What is the explanation for modular programming?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we use null pointer?
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
How can I allocate arrays or structures bigger than 64K?
What are header files why are they important?
write a program to display all prime numbers
What is structure padding and packing in c?
Explain what is the concatenation operator?
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
What was noalias and what ever happened to it?
Explain what is the benefit of using an enum rather than a #define constant?
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
Are c and c++ the same?