examples/tests

Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-08-23 13:50:26 +02:00
padre 953c3ad48d
commit 36bee15ae6
Se han modificado 89 ficheros con 1286 adiciones y 0 borrados

Ver fichero

@@ -0,0 +1,10 @@
#include <stdio.h>
int main() {
printf("Testing modulo operator:\n");
printf("10 %% 3 = %d\n", 10 % 3);
printf("15 %% 4 = %d\n", 15 % 4);
printf("8 %% 2 = %d\n", 8 % 2);
printf("9 %% 2 = %d\n", 9 % 2);
return 0;
}