What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / navya
1,1,2
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is the correct declaration of main?
What is identifiers in c with examples?
What is wrong with this code?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What is structure of c program?
Define the scope of static variables.
What is calloc malloc realloc in c?
What is pass by value in c?
What is difference between constant pointer and constant variable?
How do you list files in a directory?
What is an auto variable in c?
What is a list in c?
What are inbuilt functions in c?
How do you use a pointer to a function?
What is class and object in c?