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
Explain can the sizeof operator be used to tell the size of an array passed to a function?
Explain what is the difference between functions abs() and fabs()?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
What is getch() function?
What is floating point constants?
What does %p mean c?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
Can a program have two main functions?
How do I get an accurate error status return from system on ms-dos?
Why c language?
What is a rvalue?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What are pointers? What are different types of pointers?
How to write a code for reverse of string without using string functions?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }