I just downloaded and installed the lcc64 compiler. To test if it works, i compiled this program
#include <stdio.h>
int main(int argc, char *argv[]) {
printf("test");
return 0;
}
by using lcc64.exe Source.c -o prog.exe
.
But if i try to start the program prog.exe
in console,
a window pops up saying "Unsupported 16 bit application", "The Program or feature '\??\C:\lcc\lcc\bin\prog.exe' cant be opened due to an incompatibility with 64-bit versions of Windows."
What am i doing wrong?