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 are the advantages of Macro over function?
how to count no of words,characters,lines in a paragraph.
Can we change the value of constant variable in c?
What are reserved words?
Is calloc better than malloc?
What will be your course of action for a push operation?
How are 16- and 32-bit numbers stored?
Write a program to reverse a linked list in c.
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is indirection?
Explain union.
Is c is a procedural language?
What are the benefits of organizational structure?
praagnovation
How can I manipulate strings of multibyte characters?