printf(char[],var)
Writes something on Console. You can also put Variables or strings out. Library: stdio.h
#include <stdio.h>
int main(void){
	int num=42//initililes the Var called 'num'
	printf("This will be written.\n")//printing
	printf("This too: %d",num)//printing too
}
