which of the following is not a character constant
a) 'thank you'
b) 'enter values of p, n ,r'
c) '23.56E-o3'
d) all of the above
what is C?
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
what is printf
What is a header file?
main() { printf("hello"); fork(); }
What is use of #include in c?
In which area global, external variables are stored?
Where are c variables stored in memory?
What are comments and how do you insert it in a C program?
Compare interpreters and compilers.
What is void c?
What is the most efficient way to store flag values?