What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / murali
3 2 1
| Is This Answer Correct ? | 11 Yes | 5 No |
Post New Answer View All Answers
What is output redirection?
What is function prototype in c language?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What math functions are available for integers? For floating point?
How can I access an I o board directly?
Do you know pointer in c?
What is array within structure?
Place the #include statement must be written in the program?
What is the size of empty structure in c?
Which is an example of a structural homology?
What is c token?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
When we use void main and int main?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);