mirror of
https://gitlab.com/blau_araujo/cblc.git
synced 2025-05-10 02:26:36 -03:00
10 lines
155 B
C
10 lines
155 B
C
#include <stdio.h>
|
|
|
|
#define MULT 10 // Multiplicador.
|
|
|
|
int main(void) {
|
|
int num = 5;
|
|
|
|
printf("%d x 10 = %d\n", num, num * MULT);
|
|
return 0;
|
|
}
|