What is a macro in c preprocessor?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What is a union?
How do you determine the length of a string value that was stored in a variable?
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
what is C?
What is typedef?
what is void pointer?
Explain the difference between getch() and getche() in c?
the question is that what you have been doing all these periods (one year gap)
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
Explain what is the stack?