Loading...
「ツール」は右上に移動しました。
利用したサーバー: wtserver2
125いいね 5918回再生

C Programming on Windows Quick Setup Guide

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

コメント