What is typedf?
No Answer is Posted For this Question
Be the First to Post Answer
How is null defined in c?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Why preprocessor should come before source code?
Explain built-in function?
what do u mean by Direct access files? then can u explain about Direct Access Files?
Can we replace the struct function in tree syntax with a union?
What are file streams?
What does sizeof return c?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What is the use of bitwise operator?
What is #pragma statements?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?