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

how to convert decimal to binary in c using while loop without using array

50 Answers   Apple, Aptech, Arwen Tech, BCS, C2D Software, CEC,


What is the code for following o/p * * * * * * * * * * * * * * * *

1 Answers  


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

9 Answers  


Why are memory errors hard to debug?

1 Answers  


full c programming error question based problem

3 Answers   HCL, TCS,






Assume that the int variables i and j have been declared, and that n has been declared and initialized. Write code that causes a "triangle" of asterisks of size n to be output to the screen. Specifically, n lines should be printed out, the first consisting of a single asterisk, the second consisting of two asterisks, the third consistings of three, etc. The last line should consist of n asterisks. Thus, for example, if n has value 3, the output of your code should be * ** *** You should not output any space characters. Hint: Use a for loop nested inside another for loop.

2 Answers   HCL,


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?

1 Answers  


when i use cout or cin call & then either << or >> .....it shows declaration syntax error...what should i do? cout<<"anything"; int a; cin>>a; return 0;

2 Answers  


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

14 Answers   HCL,


Write a C program to enter 10 integer numbers through one variable and count how many of them are even using while loop ?

2 Answers  


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

2 Answers   TCS,


What is probability to guarantee that the task a programmer is going to create will be created and be able to run on a particular system (RTOS/GPOS).

0 Answers  


Categories