Saturday, 7 September 2013

Please explain this C program

Please explain this C program

#include<stdio.h>
#include<conio.h>
void main()
{
int a=10,b=11;
clrscr();
printf("%d");
getch();
}
Output=11 How the output is 11 even I am not mentioned the variable name
in the printf function.

No comments:

Post a Comment