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

Explain can the sizeof operator be used to tell the size of an array passed to a function?

597


a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above

874


What is double pointer in c?

589


Are global variables static in c?

676


What is function prototype in c with example?

580






What are header files and what are its uses in C programming?

638


in linking some of os executables are linking name some of them

1651


Why structure is used in c?

595


What is merge sort in c?

645


What is function prototype?

611


What is the process of writing the null pointer?

607


Explain what is the use of a semicolon (;) at the end of every program statement?

737


What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25

1492


What is the use of f in c?

559


How can you tell whether a program was compiled using c versus c++?

619