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
What is structure padding and packing in c?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Is it possible to initialize a variable at the time it was declared?
Why we not create function inside function.
Explain #pragma statements.
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
How do I create a directory? How do I remove a directory (and its contents)?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Write a program to reverse a linked list in c.
What are identifiers and keywords in c?
What is the difference between the local variable and global variable in c?
Why do we need volatile in c?
Where is c used?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?