Explain what will the preprocessor do for a program?
No Answer is Posted For this Question
Be the First to Post Answer
Can variables be declared anywhere in c?
can we have joblib in a proc ?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
Write a C program to print 1 2 3 ... 100 without using loops?
plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .
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
Is c still relevant?
What does stand for?
Explain the properties of union.
How can I determine whether a machines byte order is big-endian or little-endian?
What is the 'named constructor idiom'?