Answer Posted / naresh
main()
{
extern int iExtern;
iExtern = 20;
printf(“%d”,iExtern);
}
Why do we get linkage error for the above code
| Is This Answer Correct ? | 14 Yes | 3 No |
Post New Answer View All Answers
using for loop sum 2 number of any 4 digit number in c language
What are the differences between new and malloc in C?
What 'lex' does?
What is unary operator?
Explain the advantages of using macro in c language?
What is the meaning of typedef struct in c?
What extern c means?
What is external variable in c?
List the difference between a "copy constructor" and a "assignment operator"?
What is the use of ?: Operator?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is getch() function?
What is the size of array float a(10)?
write a c program to find the sum of five entered numbers using an array named number
What is call by value in c?