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
What does c mean?
What is the difference between pure virtual function and virtual function?
largest Of three Number using without if condition?
What is wrong with this statement? Myname = 'robin';
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
Wt are the Buses in C Language
What is stack in c?
What are logical errors and how does it differ from syntax errors?
Why double pointer is used in c?
What is multidimensional arrays
What is the difference between a free-standing and a hosted environment?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What is difference between far and near pointers?
Can we initialize extern variable in c?
Is file a keyword in c?