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 ? | 19 Yes | 0 No |
Post New Answer View All Answers
using for loop sum 2 number of any 4 digit number in c language
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
program to convert a integer to string in c language'
What are the different types of endless loops?
When should the const modifier be used?
write a program fibonacci series and palindrome program in c
What is the difference between the expression “++a” and “a++”?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
what are bit fields? What is the use of bit fields in a structure declaration?
What is the use of volatile?
What will be your course of action for a push operation?
Is c pass by value or reference?
What is default value of global variable in c?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.