Skip to content
This repository has been archived by the owner on Jun 16, 2023. It is now read-only.

Latest commit

 

History

History
30 lines (25 loc) · 538 Bytes

3_sintassi.md

File metadata and controls

30 lines (25 loc) · 538 Bytes

Sintassi

Un programma C/C++ è una sequenza di token delimitate da whitespaces. TODO: completa Tipi token:

  • operatori
  • parole riservate ... TODO: completa

Identificatori

::= { | }

  • = lettere maiusc e minusc + underescore
  • no inizio con numero
  • no parole riservate

Commenti

=> parte di codice non interpretata dal compilatore

// /* ... */

Best practice:

/*
 *
 *
 */

Spazi bianchi

Unico separatore obbligatorio tra identificatore e parola chiave.