Answer Posted / poornima
extern is a keyword that is prefixed in function
declaration. It means tht function definition is in source
file.
for eg.
source file contains int sum(int x,int y) definition part.
To make use of this function in file by simply declare as
extern int sum(int ,int); is a good practice.
But to compiler happy extern sum(); is enough.
| Is This Answer Correct ? | 34 Yes | 16 No |
Post New Answer View All Answers
How do you define CONSTANT in C?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What does double pointer mean in c?
What is merge sort in c?
How do you define structure?
main() { printf("hello"); fork(); }
Is it possible to use curly brackets ({}) to enclose single line code in c program?
What is void main ()?
What is #include stdlib h?
explain how do you use macro?
Difference between exit() and _exit() function?
Explain how can I pad a string to a known length?
What is cohesion in c?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...