#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
Compare array data type to pointer data type
What are the two types of structure?
write a program to find the given number is prime or not
How do you sort filenames in a directory?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Tell me when is a void pointer used?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
What is the use of void pointer and null pointer in c language?
What is the process of writing the null pointer?
What are the types of operators in c?
Who invented b language?
What is the difference between exit() and _exit() function in c?
What is context in c?
When should we use pointers in a c program?
Write a code to determine the total number of stops an elevator would take to serve N number of people.