main()
{
int i=400,j=300;
printf("%d..%d");
}

Answer Posted / sunil samal

300..400 because it will execute right to left .
when the printf () execute it will first execute from right to
left...
regards
sunilsamal@live.com

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

develop algorithms to add polynomials (i) in one variable

1738


How can I change the size of the dynamically allocated array?

630


Can you subtract pointers from each other? Why would you?

558


write a c program to find the sum of five entered numbers using an array named number

1617


Why do we write return 0 in c?

551






how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.

1212


What is static memory allocation? Explain

630


What are enums in c?

657


Calculate 1*2*3*____*n using recursive function??

1515


What is a union?

609


What is the purpose of sprintf?

617


A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream

668


What is wrong with this program statement?

608


Where we use clrscr in c?

704


Differentiate call by value and call by reference?

565