i=10,j=20
j=i,j?(i,j)?i:j:j
print i,j
What is the size of enum in bytes?
What is the purpose of #pragma directives in C?
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
What is the difference b/w main() in C language and main() in C++.
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What are pointers in C? Give an example where to illustrate their significance.
Why we write conio h in c?
what is the difference between NULL('\0') and 0?
Explain About fork()?
Is an array parameter is always "by reference" ?
When should a type cast not be used?