GCC/MinGW on Windows Quick Setup Guide

Channel:
Subscribers:
6,130
Published on ● Video Link: https://www.youtube.com/watch?v=k6juv3mIr9o



Duration: 2:25
117,753 views
2,134


Download from WinLibs: https://winlibs.com/

GCC is a more advanced, more up-do-date C compiler (with numerous other compilers too) than Microsoft's "cl". Here's a link to the GNU C language extensions available when compiling with GCC: https://gcc.gnu.org/onlinedocs/gcc/C-Extensions.html

"Hello world" source code:

#include "stdio.h"
int main(int argc, char **argv) {
printf("Hello world!\n");
return 0;
}







Tags:
mingw
clang