Are enumerations really portable?
No Answer is Posted For this Question
Be the First to Post Answer
What will happen when freeing memory twice
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Explain About fork()?
Can we replace the struct function in tree syntax with a union?
Explain how do you sort filenames in a directory?
how many key words availabel in c a) 28 b) 31 c) 32
Does c have function or method?
What is an expression?
how to devloped c lenguege?
What is difference between structure and union?
What are linker error?
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