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


Please Help Members By Posting Answers For Below Questions

Explain what does it mean when a pointer is used in an if statement?

611


what is the difference between class and unio?

1854


How can I do graphics in c?

586


What is infinite loop?

619


How can this be legal c?

644






#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }

706


Can you tell me how to check whether a linked list is circular?

753


Why do we use pointer to pointer in c?

586


Explain what are the advantages and disadvantages of a heap?

589


What is the correct code to have following output in c using nested for loop?

603


Describe newline escape sequence with a sample program?

640


to find the closest pair

1813


What is dynamic memory allocation?

800


What is the purpose of sprintf() function?

590


How can I make sure that my program is the only one accessing a file?

665