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
Whats s or c mean?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
What are actual arguments?
Why dont c comments nest?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What are the two forms of #include directive?
What is bubble sort in c?
Is array name a pointer?
What is the benefit of using const for declaring constants?
i want to know the procedure of qualcomm for getting a job through offcampus
What is the difference between #include
Differentiate abs() function from fabs() function.
How can I split up a string into whitespace-separated fields?
How to declare pointer variables?
Tell me can the size of an array be declared at runtime?