1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-19 13:02:14 +02:00

[c/pt_br]Fix correct name #define (#2469)

This commit is contained in:
Diogo Leal
2016-10-17 14:41:46 -02:00
committed by ven
parent 500a79811a
commit 95283618ae

View File

@@ -28,7 +28,7 @@ Funcionam no C89 também.
*/
// Constantes: #define <palavra-chave>
#definie DAY_IN_YEAR 365
#define DAY_IN_YEAR 365
//enumerações também são modos de definir constantes.
enum day {DOM = 1, SEG, TER, QUA, QUI, SEX, SAB};