What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / j jhawahar
1,1,2
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is a struct c#?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Define C in your own Language.
How can I call fortran?
what is different between auto and local static? why should we use local static?
Which one would you prefer - a macro or a function?
How many types of functions are there in c?
praagnovation
How can I insert or delete a line (or record) in the middle of a file?
What is the purpose of the preprocessor directive error?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
write a c program to find the sum of five entered numbers using an array named number
What is an lvalue?
What are pointers? Why are they used?
Why is it important to memset a variable, immediately after allocating memory to it ?