main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Answer Posted / san
13,11,11
| Is This Answer Correct ? | 106 Yes | 63 No |
Post New Answer View All Answers
Why we use int main and void main?
Why is c called c not d or e?
How do we declare variables in c?
What are run-time errors?
What is indirection?
show how link list can be used to repersent the following polynomial i) 5x+2
What is the value of h?
Can we change the value of static variable in c?
Compare array data type to pointer data type
What does 2n 4c mean?
Was 2000 a leap year?
What is the difference between functions getch() and getche()?
Where does the name "C" come from, anyway?
Why are algorithms important in c program?
What is structure in c language?