Adiconado o exemplo x10.c
This commit is contained in:
parent
74fbbf8bb6
commit
3d0993cd73
1 changed files with 10 additions and 0 deletions
10
aulas/02/x10.c
Normal file
10
aulas/02/x10.c
Normal file
|
@ -0,0 +1,10 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main(void){
|
||||
int num;
|
||||
|
||||
num = 5;
|
||||
|
||||
printf("%d x 10 = %d\n", num, num *10);
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Reference in a new issue