What is volatile keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is wild pointer in c?
What are register variables in c?
Define VARIABLE?
What are valid operations on pointers?
Is c easy to learn?
Can you assign a different address to an array tag?
Derive the complexity expression for AVL tree?
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
what are the advantage and disadvantage of recursion
To find whether a number is even or odd without using any conditional operator??
12 Answers College School Exams Tests, IBM,
What is array in C
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