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
how to execute a program using if else condition and the output should enter number and the number is odd only...
What are comments and how do you insert it in a C program?
How does placing some code lines between the comment symbol help in debugging the code?
What is the difference between the local variable and global variable in c?
What is the difference between int main and void main in c?
What does c mean in standard form?
Explain argument and its types.
What is static memory allocation? Explain
Is null a keyword in c?
What are the advantages and disadvantages of pointers?
What is local and global variable in c?
What is restrict keyword in c?
How can I insert or delete a line (or record) in the middle of a file?
Where we use clrscr in c?
What is %lu in c?