#include<stdio.h>
int main( )
{
Int a=300, b, c;
if(a>=400)
b=300;
c=200;
printf(“%d%d
”, b, c);
return0;
}
Answer Posted / sristi
b will print garbage value and c will print 200
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What's the best way of making my program efficient?
What are the application of void data type in c?
What is a spanning Tree?
Explain what is operator promotion?
what do the 'c' and 'v' in argc and argv stand for?
What is the meaning of && in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
Can we compile a program without main() function?
What is preprocessor with example?
Is Exception handling possible in c language?
what are non standard function in c
What is c language and why we use it?
What is the difference between break and continue?
What is the use of pointers in C?