Answer Posted / surenda pal singh chouhan
No output/error
Explanation:
The first clrscr() occurs inside a function. So it becomes
a function call. In the second clrscr(); is a function
declaration (because it is not inside any function).
| Is This Answer Correct ? | 17 Yes | 0 No |
Post New Answer View All Answers
Tell me is null always defined as 0(zero)?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
What is main () in c?
What is declaration and definition in c?
What are the types of type specifiers?
Can true be a variable name in c?
Who developed c language?
Why c is a mother language?
How many main () function we can have in a project?
What are data structures in c and how to use them?
Explain bitwise shift operators?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
What is wrong with this program statement? void = 10;
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Why header files are used?