main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / sunil5a2
4 5 5
printf excutes form lefthand side onwords..
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is the difference between malloc() and calloc() function in c language?
What is the difference between call by value and call by reference in c?
formula to convert 2500mmh2o into m3/hr
What are the features of the c language?
What is the purpose of & in scanf?
How can you increase the size of a statically allocated array?
What is array of structure in c programming?
Do you know the difference between malloc() and calloc() function?
What is a dynamic array in c?
What are inbuilt functions in c?
How can I generate floating-point random numbers?
What is the use of define in c?
How can I manipulate strings of multibyte characters?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Why is c so popular?