C Programming on Windows Quick Setup Guide
Channel:
Subscribers:
6,130
Published on ● Video Link: https://www.youtube.com/watch?v=TqJfzFEYILc
How to get programming in C on windows in a simple, fast way. Get past all the redundant and distracting options, folders and settings and just get some code compiling.
The source code (quotes work as well as angled brackets to include stdio):
#include "stdio.h"
int main(int argc, char **argv) {
printf("Hello world!\n");
return 0;
}
Video chapters:
00:00 C Programming Requirements
00:20 Creating main.c
00:39 Installing a Compiler
01:24 Compiling Your Program
02:16 Running Your Program
02:30 Other Editors and Compilers
03:05 Upcoming Tutorials
Other Videos By Nick Walton
Tags:
visual studio
c++
beginner
tutorial