I want to compile a program that I wrote in Microsoft Visual C++. It is a C program that looks like this:
#include %26lt;stdio.h%26gt;
int main()
{
if ( !remove("useless.txt"){
printf( "Remove Sucsess" );
}
return 0;
}
I just wanted to test the "remove" function that I recently learned.
When I try to complie it an error comes up:
1%26gt;cl : Command line error D8045 : cannot compile C file '.\remove.c' with the /clr option
Now I have no idea what /clr is can anyone help?
Is it jsut the compiler or my program?
Thanks,
C progamming /clr?
Your program is missing library...
set up libraries path...
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment