Dear Sir,
I wrote this simple program
#include <stdio.h>
int main(void) {
while(1)
{
printf(" Hello! ");
}
return 0;
}
to create .exe application, by Code Composer version 6 (by right click on the project name --> properties --> GNU linker --> then modified output file to be .exe --> OK).
Then i tried to open this application which located in Debug folder but the following message was appeared
"This app can't run on your PC, to find a version for your PC, check with the software publisher. "
So how can i solve this problem ?
Thanks in advance