What is c preprocessor mean?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between NULL and NUL?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What are types of functions?
What is the purpose of #pragma directives in C?
What is static memory allocation? Explain
What is pointer to pointer in c with example?
write function to reverse char array ... without using second array
program that accepts amount in figures and print that in words
2 Answers Infosys, Lovely Professional University, Wipro,
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,
write a program to find the largest and second largest integer from an array
How was c created?