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 char in c?
What is the explanation for prototype function in c?
Why is this loop always executing once?
I need a sort of an approximate strcmp routine?
Describe dynamic data structure in c programming language?
write a program to display all prime numbers
What are the usage of pointer in c?
Write a Program to accept different goods with the number, price and date of purchase and display them
What are conditional operators in C?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
How can I write a function analogous to scanf?
What is a keyword?
Is c is a high level language?
What are compound statements?
What is the basic structure of c?