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
What is spark map function?
What are the benefits of organizational structure?
how to build a exercise findig min number of e heap with list imlemented?
What is getch () for?
What does return 1 means in c?
What is memory leak in c?
What are types of functions?
Tell me with an example the self-referential structure?
how can use subset in c program and give more example
What is atoi and atof in c?
Explain how are 16- and 32-bit numbers stored?
What is struct node in c?
Explain how can you tell whether two strings are the same?
What is variable declaration and definition in c?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?