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