why programs in c are running with out #include<stdio.h>?
some warnings are display in terminal but we execute the program we get answer why?
eg:
main()
{
printf("hello world
");
}
No Answer is Posted For this Question
Be the First to Post Answer
main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); }
Why doesn't C support function overloading?
Explain the use of function toupper() with and example code?
Can stdout be forced to print somewhere other than the screen?
What is meant by high-order and low-order bytes?
What is a const pointer?
What is the memory allocated by the following definition ? int (*x)();
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
What is a lookup table in c?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
What is a union?
What is the advantage of c?