what does keyword ‘extern’ mean in a function declaration?
Answer Posted / vadivel t
Extern int a; -> means that, a int variable called 'a;
defined in any of the source file in the project and can be
accessed here in the file using extern declaration.
| Is This Answer Correct ? | 20 Yes | 0 No |
Post New Answer View All Answers
What is a pointer in c plus plus?
Explain the difference between malloc() and calloc() in c?
Explain how are 16- and 32-bit numbers stored?
What is a static variable in c?
What are the different types of linkage exist in c?
find out largest elemant of diagonalmatrix
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Explain how do you generate random numbers in c?
Explain what are multidimensional arrays?
What will be your course of action for a push operation?
What does sizeof function do?
How can I swap two values without using a temporary?
What is call by reference in functions?
What is pre-emptive data structure and explain it with example?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;