9
examples/tests/modulo_test.c
Archivo normal
9
examples/tests/modulo_test.c
Archivo normal
@@ -0,0 +1,9 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
int a = 7;
|
||||
int b = 3;
|
||||
int result = a % b;
|
||||
printf("%d %% %d = %d\n", a, b, result);
|
||||
return 0;
|
||||
}
|
||||
Referencia en una nueva incidencia
Block a user