What is the code in while loop that returns the output of given code?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by global static? why we have to use static variable instead of Global variable
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
what does data structure mean?
What are different storage class specifiers in c?
What is sizeof array in c?
What is difference between arrays and pointers?
What is switch in c?
Write a code to remove duplicates in a string.
Explain how can you restore a redirected standard stream?
Explain what are bus errors, memory faults, and core dumps?
What are the functions to open and close file in c language?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }