C Reference: C Introduction
Quick reference for C Introduction.
C Reference — C Introduction
Quick summary of C Introduction with syntax and example.
Syntax
int main(){ ... }
Example
#include <stdio.h>
int main(){
printf("Hello C\n");
return 0;
}