what is meant by linking error? how can i solve it? if there
is a linking error " unable to open file 'cos.obj'? then what
should i do?



what is meant by linking error? how can i solve it? if there is a linking error " unable to o..

Answer / mr.mohamedali

looks like you just copied a .cpp file from somewhere and tried to run it on your complier.
if it is so you have to copy all the extensions of file name and paste it the directory from which you want to run the program.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C C++ Errors Interview Questions

main() { char c; for(c='A';c<='Z';c++) getch(); }

9 Answers  


what is the error in the following code: main() { int i=400,j; j=(i*i)/i; }

4 Answers  


char* f() return "hello:"; void main() {char *str=f(); }

1 Answers  


who was the present cheif governor of reserve bank of india

6 Answers   State Bank Of India SBI,


what is meant for variable not found?

3 Answers  


void main() { int i=5; printf("%d",i+++++i); }

14 Answers   HCL,


#include<>stdio.h> #include<>conio.h> { printf("hello"); void main() getch(); } what the out put of this program and why ......plz clear my answer

10 Answers   Wipro,


How to reverse a linked list without using array & -1? Thank you.

2 Answers   Access, Satyam,


Write a program to accept two strings of Odd lengths. Then take all odd characters from one string and even characters from the other and concatenate and produce a string.

1 Answers  


difference between c/c++ programing language? what is necessesity of c++ when existing c programing language?

2 Answers   TCS,


I can not get my C++ program to work right. It is supposed to tell if a word is a palindrome or not, but it only tells thet the word is not a palindrome. And I can't fix it.

1 Answers  


class test { int a; public: test(int b):a(b){} void show(){ cout<<a; } }; void main() { test t1; test t2(5); t1.show(); t2.show(); } }

1 Answers  


Categories