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

How do you search data in a data file using random access method?

836


Explain about the constants which help in debugging?

857


What is a macro?

657


What is the use of define in c?

598


What is #include called?

571






What is a macro in c preprocessor?

633


Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?

660


Explain pointers in c programming?

637


Is it possible to execute code even after the program exits the main() function?

820


Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.

1015


What is difference between structure and union in c programming?

571


Explain modulus operator. What are the restrictions of a modulus operator?

601


How can you determine the size of an allocated portion of memory?

746


What is the size of array float a(10)?

658


Explain the red-black trees?

610