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?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to find factorial of a number using recursive function.
What is wrong in this statement? scanf(“%d”,whatnumber);
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
What is difference between stdio h and conio h?
Why doesn't C support function overloading?
what is object oriental programing?
What is 1d array in c?
What is an identifier?
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
A B C D E F G F E D C B A A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this