main()
{
int i=400,j=300;
printf("%d..%d");
}
Answer Posted / ravi
its machine Dependent
it displays garbage values in Linux
in some machines it will display 400 300
as they are on the top of stack
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What is double pointer in c?
Explain what is the difference between #include and #include 'file' ?
What is the difference between functions getch() and getche()?
What is array of structure in c?
What does == mean in texting?
How do you generate random numbers in C?
Why c language is called c?
Why flag is used in c?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Explain the difference between ++u and u++?
What is a double c?
State the difference between x3 and x[3].
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Differentiate between #include<...> and #include '...'
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none