What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answers were Sorted based on User's Feedback
Answer / chandrakala
error: i doesn't declared in a correct way
int i=1
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
What are the advantages of Macro over function?
What is the restrict keyword in C?
What is adt in c programming?
Write a code on reverse string and its complexity.
Can a variable be both const and volatile?
what is software?
how can u print a message without using any library function in c
What is the difference between text and binary modes?
Differentiate between the = symbol and == symbol?
What language is windows 1.0 written?
What are the advantages of using linked list for tree construction?