C in short
First C program
Hello, world: On the internet...
Hello, world
#include <stdio.h>
int main()
{
puts("Hello World\n");
return 0;
}Exécutable
Compile with GCC sous GNU Bash
Compile with GCC
Language elements
First instructions in C
Basic types
Functions
Tables
Control structures - Logic
Control structures - switch
Control structures - loops
Specific programe variables
Example:
Example (typedef):
Last updated
Was this helpful?