0
Error when i build my program in visual studio what is the solve ?
the error code is " lnk1123 failure during conversation to COFF: file invalid or ccorrpt what is the solve
7 Answers
+ 1
can you post the code of your program?
0
#include <iostream>
using namespace std;
int main()
{
int x,y;
cout <<"hello world"<<endl;
y=x+1;
cout<<"y="<<y<<endl;
return 0;
}
0
on the side note
you haven't initialised the value of x or y, hence y = x + 1 is faulty code, because x or y, neither have any specific value to display
0
here's the solution to the lnk 1123 problem
http://stackoverflow.com/questions/10888391/error-link-fatal-error-lnk1123-failure-during-conversion-to-coff-file-inval
0
i need to ( when i combile i need to input value x ,then the programs give me value y)
0
i opened the URL and i found the solution the solution was "turn on lnk " i found it on
0
what should i do