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


Please Help Members By Posting Answers For Below Questions

What is spark map function?

837


What are the benefits of organizational structure?

814


how to build a exercise findig min number of e heap with list imlemented?

1870


What is getch () for?

916


What does return 1 means in c?

842


What is memory leak in c?

868


What are types of functions?

802


Tell me with an example the self-referential structure?

778


how can use subset in c program and give more example

1713


What is atoi and atof in c?

842


Explain how are 16- and 32-bit numbers stored?

1046


What is struct node in c?

848


Explain how can you tell whether two strings are the same?

839


What is variable declaration and definition in c?

721


write a c program to print the next of a particular no without using the arithmetic operator or looping statements?

3580