main()
{
int i=400,j=300;
printf("%d..%d");
}
Answer Posted / pritam
Answer:
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 ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is multithreading possible in c?
What is preprocessor with example?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
Explain what is the difference between far and near ?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
What is a null pointer in c?
Does c have circular shift operators?
How can you determine the maximum value that a numeric variable can hold?
Write a program to swap two numbers without using third variable?
What extern c means?
When should the register modifier be used? Does it really help?
Is c# a good language?
What is the use of bitwise operator?
What is abstract data structure in c?
How is a pointer variable declared?