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
Is struct oop?
Compare and contrast compilers from interpreters.
Do you have any idea about the use of "auto" keyword?
What is a header file?
What are derived data types in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is a null pointer in c?
How will you find a duplicate number in a array without negating the nos ?
What is gets() function?
What is the best style for code layout in c?
What is a good way to implement complex numbers in c?
What is wild pointer in c?
find the sum of two matrices and WAP for it.
What is define directive?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?