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


Please Help Members By Posting Answers For Below Questions

Why use int main instead of void main?

599


What is c mainly used for?

599


Why we use break in c?

552


What is page thrashing?

653


What does %d do in c?

547






Ow can I insert or delete a line (or record) in the middle of a file?

576


How many levels of pointers can you have?

705


program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)

1629


Explain Basic concepts of C language?

646


Explain data types & how many data types supported by c?

586


How can I open files mentioned on the command line, and parse option flags?

595


Why is structure padding done in c?

648


Difference between Shallow copy and Deep copy?

1572


Explain b+ tree?

629


Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.

662