Monday 31 October 2016

Program error in visual studio c++ 2010 express

May i know how to solve this problem, after i have run my program in visual c++ 2010 express?



Program Code



#include "stdafx.h"
#include "stdio.h"

int main(void)

{
printf("Welcome !!!\n");
return 0;
}


Output message
1>------ Rebuild All started: Project: Exercise, Configuration: Debug Win32 ------
1> stdafx.cpp
1> Exercise.cpp

1>LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...