Why dont c comments nest?
No Answer is Posted For this Question
Be the First to Post Answer
How do you define CONSTANT in C?
how to add two numbers without using arithmetic operators?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What are the advantages of external class?
Can we declare function inside main?
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
What are preprocessor directives?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
what is the basis for selection of arrays or pointers as data structure in a program
Do pointers take up memory?
Output for following program using for loop only * * * * * * * * * * * * * * *
how to print "hai" in c?