Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is linkage error when it occurs in c program

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


Please Help Members By Posting Answers For Below Questions

Explain can the sizeof operator be used to tell the size of an array passed to a function?

1115


Explain what is the difference between functions abs() and fabs()?

1255


`write a program to display the recomended action depends on a color of trafic light using nested if statments

2175


What is getch() function?

1104


What is floating point constants?

1191


What does %p mean c?

1114


In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?

1260


Can a program have two main functions?

1176


How do I get an accurate error status return from system on ms-dos?

1175


Why c language?

1113


What is a rvalue?

1258


"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above

1068


What are pointers? What are different types of pointers?

1217


How to write a code for reverse of string without using string functions?

2197


#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); }

1230