C program output
Let us try something interesting now
#include<studio.h>
int main()
{
int a;
printf(“%d”,a);
a=3;
}
Will the above program compile? If it does will it produce output ? What will be the output? 0? 3?
Comments
Post a Comment