From 0692f7f729fc5d6acdcfe66c03604a61afdaca65 Mon Sep 17 00:00:00 2001 From: Charles Santana Date: Tue, 27 May 2025 10:17:47 -0300 Subject: [PATCH] Adiconado o exemplo x10const.c --- aulas/02/x10const.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 aulas/02/x10const.c diff --git a/aulas/02/x10const.c b/aulas/02/x10const.c new file mode 100644 index 0000000..aa818ff --- /dev/null +++ b/aulas/02/x10const.c @@ -0,0 +1,10 @@ +#include + +#define MULT 10 + +int main(void){ + int num =5; + + printf("%d x 10 = %d\n", num, num * MULT); + return 0; +}