mirror of
https://gitlab.com/blau_araujo/cblc.git
synced 2025-05-10 10:36:37 -03:00
11 lines
155 B
C
11 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;
|
||
|
}
|