OK, I just began learning C language, and I read a lot of people suggest to use MinGW as a compiler. I downloaded, installed it and set it correctly (I think) and set the path. everything seems to be OK. My problem is that I can't find a way to run a C file from the CMD, when I do something like this:
C:\>gcc a\c1.c
nothing appear on the CMD
In c1.c file I have the following:
#include <stdio.h>
int main(void)
{
printf("this is a test.\n");
return 0;
}
I tried tcc compiler and when using it this way:
C:\>tcc a\c1.c
it outputs the following:
this is a test.
How can I make MinGW output that the same way? I looked in the MinGW/gcc manual and HowTos and couldn't find a way to do the same thing.