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


Please Help Members By Posting Answers For Below Questions

in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above

600


What is the argument of a function in c?

575


the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b

1906


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

1859


What is the difference between array and pointer?

569






Find MAXIMUM of three distinct integers using a single C statement

624


Why is c so important?

596


in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.

7410


What is uint8 in c?

642


how to count no of words,characters,lines in a paragraph.

3907


Does c have an equivalent to pascals with statement?

574


I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.

1498


Dont ansi function prototypes render lint obsolete?

606


Tell me what is null pointer in c?

615


What is the use of function overloading in C?

679