main()
{
int i=400,j=300;
printf("%d..%d");
}
Answer Posted / surenda pal singh chouhan
400..300
Explanation:
printf takes the values of the first two assignments of the
program. Any number of printf's may be given. All of them
take only the first two values. If more number of
assignments given in the program, then printf will take
garbage values.
| Is This Answer Correct ? | 8 Yes | 7 No |
Post New Answer View All Answers
Why is c called c not d or e?
How do I round numbers?
What is the use of linkage in c language?
What is const volatile variable in c?
What happens if you free a pointer twice?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
How do you use a 'Local Block'?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Difference between Function to pointer and pointer to function
What are keywords in c with examples?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
How does #define work?
Place the #include statement must be written in the program?
What is new line escape sequence?