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

Answer Posted / preshit

output will b garbage value
because no variables are passed in last sentence.

Is This Answer Correct ?    5 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is static and auto variables in c?

552


What are data types in c language?

578


What are the functions to open and close the file in c language?

587


c program to compute AREA under integral

1797


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5175






What is the size of empty structure in c?

580


What extern c means?

527


Can we change the value of static variable in c?

550


What is variable initialization and why is it important?

609


What standard functions are available to manipulate strings?

552


Do you know what are bitwise shift operators in c programming?

577


What is memory leak in c?

624


Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc

5051


What is "Hungarian Notation"?

631


How is actual parameter different from the formal parameter?

583