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?
Answer Posted / rajan
Explain the out put
#include<stdio.h>
extern int i;
main()
{
printf("%d",i);
}
#include<stdio.h>
extern int i;
main()
{
printf("%d",i);
}
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain 'far' and 'near' pointers in c.
Which is better oop or procedural?
Why is void main used?
What is the difference between procedural and functional programming?
What is extern storage class in c?
What is data structure in c language?
What is preprocessor with example?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
Is printf a keyword?
What is the difference between NULL and NUL?
What are runtime error?
How do you define CONSTANT in C?
Are c and c++ the same?
What is line in c preprocessor?
When c language was developed?