ADD exercices week 2

This commit is contained in:
2025-02-27 19:27:10 +01:00
parent 9df5ce5b66
commit 914fbc5d6d
35 changed files with 470 additions and 0 deletions

16
01-VeryEasy2/foo.c Normal file
View File

@@ -0,0 +1,16 @@
#include <stdio.h>
#include <stdint.h>
int main() {
char foo[14] = {0xf3, 0xfc, 0xf1, 0xf0, 0x17, 0xfa, 0x1e, 0x16, 0xf7, 0xd4, 0x1c, 0xfa, 0xa9, '\0'};
for (uint8_t i = 0; i<13; i++) {
foo[i] += 'W';
}
foo[13] = '\0';
printf("%s \r\t", foo);
return 0;
}
void myfunc(int a, ...) {
}