main()
{
int i=400,j=300;
printf("%d..%d");
}
Answer Posted / sunil samal
300..400 because it will execute right to left .
when the printf () execute it will first execute from right to
left...
regards
sunilsamal@live.com
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why is c so popular?
What is the difference between typedef struct and struct?
How can I swap two values without using a temporary?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is the size of enum in c?
Tell me what is the purpose of 'register' keyword in c language?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
what do the 'c' and 'v' in argc and argv stand for?
How to establish connection with oracle database software from c language?
What is structure padding in c?
What is pass by reference in c?
Can we assign string to char pointer?
What is #include stdio h and #include conio h?
How can I find out if there are characters available for reading?