Show Menu
Cheatography

TPSI - C++ Cheat Sheet (DRAFT) by

Cheat Sheet in preparazione della verifica

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Tipi di dati e array

int
Intero (-1,0,­​1,­2...)
float
Numero con la virgola
bool
True o False
char
Carattere ('a','­​b'...)
array
int arr[5] = {1, 2, 3, 4, 5};
 

Struttura if

if (condizione) {
//istr​uzioni
}
else {
}
 

fork()

int p = fork()
Creo un processo figlio