Загрузить файлы в «/»

This commit is contained in:
Gregory Bednov 2026-06-20 13:26:29 +03:00
commit c2895dfba8
5 changed files with 995 additions and 139 deletions

View file

@ -18,7 +18,7 @@ void rec (char *str) {
}
}
int main2() {
int main(void) {
char str[] = "0000\0";
printf("digraph {\n");
rec(str);
@ -34,9 +34,3 @@ int main2() {
}
printf("\n}\n");
}
int main(void) {
unsigned short int x = 65535; // 1111 1111 1111 1111
short int y = x;
printf("%d", y);
}