Programming Languages C Objective
Mar 07, 2013

#include<stdio.h>

#include<conio.h>

void main()

{

int a=5,b=6,c=11;

clrscr();

printf("%d %d %d");

getch();

}

What will output when you compile and run the above code?

Choose the correct answer:
A) 11 6 5
B) 5 6 11
C) Garbage value garbage value garbage value
D) Compiler error
Detailed Explanation

No Explanation

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback