Compare interpreters and compilers.
No Answer is Posted For this Question
Be the First to Post Answer
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What are the types of bitwise operator?
Whether there can be main inside another main?If so how does it work?
What is the best way to store flag values in a program?
When a c file is executed there are many files that are automatically opened what are they files?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
What are inbuilt functions 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
diff .between strcture and union
how can be easily placed in TCS.
how the size of an integer is decided? - is it based on processor or compiler or OS?
19 Answers HCL, JPR, Microsoft, nvidia,
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?