Computer Science, asked by aasiyaanjum2000, 17 days ago

hurry up please help me to solve this problem

Attachments:

Answers

Answered by Anonymous
1

Answer:

Linker Error

Explanation:

I'm saying in reference to output of the program in 16 bit platform (Turbo C under DOS)...

For further clarification;-)Undefined symbol 'i'

The statement extern int i specifies to the compiler that the memory for 'i' is allocated in some other program and that address will be given to the current program at the time of linking. But linker finds that no other variable of name 'i' is available in any other program with memory space allocated for it. Hence a linker error has occurred.

Similar questions