What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / hariram
3 2 1
| Is This Answer Correct ? | 18 Yes | 6 No |
Post New Answer View All Answers
What is the difference between c and python?
What's the best way of making my program efficient?
How can I delete a file?
Why is #define used?
What does void main () mean?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Who invented b language?
Why do we use int main instead of void main in c?
What is the difference between fread buffer() and fwrite buffer()?
What are the data types present in c?
How can I swap two values without using a temporary?
How can I list all of the predefined identifiers?
Why is c so powerful?
What is the use of extern in c?
Why dont c comments nest?