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

write the value of x and y after execution of the statements: int x=19,y; y=x++ + ++x; x++; y++;

0 Answers  


full c programming error question based problem

3 Answers   HCL, TCS,


errors are known as?

3 Answers   EX, State Bank Of India SBI,


How to upgrade LOOP environment, I just mean, how can i make loop statement editable ? I just try some program using loop statement and checking it in multiple compilers. Every compiler showing different output, what's the wrong ? is it a compiler based problem, or loop based problem, tell me why ? and what will be the debugging process, for this kind of problem ?

1 Answers  


Write a c-programe that input one number of four digits and find digits sum?

2 Answers  






Declaration of Cube Guys please help me.. Is this a right way to declare cube.? If i Compile it. It Says: Cube undeclared what should i do? Please help \thanks in advanced #include<stdio.h> #include<math.h> #include<conio.h> main( ) { float x,y; while(x++<10.0) { printf("Enter Number:"); scanf("%d", &x); y = cube(x); printf("%f %f %f \n", x,pow(x,2),y); cube(x); } { float x; float y; y = x*x*x; } getch(); return (y); }

2 Answers  


write a profram for selection sort whats the error in it?

2 Answers  


void main() { int i=1; printf("%d%d%d",i,++i,i++); } Cau u say the output....?

24 Answers   HCL,


What is the out put of this programme? int a,b,c,d; printf("Enter Number!\n"); scanf("%d",&a); while(a=!0) { printf("Enter numbers/n"); scanf("%d%d%d",&b,&c,&d); a=a*b*c*d; } printf("thanks!"); getche(); Entering numbers are a=1,b=2,c=3,d=4 b=3,c=4,d=-5 b=3,c=4,d=0

5 Answers   TCS,


what is run time error?

7 Answers  


what is syntax error?

3 Answers  


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

9 Answers  


Categories