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
Do pointers take up memory?
How many identifiers are there in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Why is structure important for a child?
Explain what is the difference between functions getch() and getche()?
Explain what is the difference between functions abs() and fabs()?
What is the purpose of main() function?
write an algorithm to display a square matrix.
Explain what is the benefit of using #define to declare a constant?
How can a program be made to print the name of a source file where an error occurs?
The __________ attribute is used to announce variables based on definitions of columns in a table?
Why is c faster?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What is Dynamic memory allocation in C? Name the dynamic allocation functions.