error cleaning, attach

This commit is contained in:
Kristjan Komlosi
2019-07-22 16:40:17 +02:00
parent 1758671962
commit 439f1beede
3 changed files with 50 additions and 16 deletions

8
try.c Normal file
View File

@@ -0,0 +1,8 @@
#include <stdio.h>
int main () {
unsigned a = 10;
for (a -= 1; a; a--) {
printf("%d", a);
}
}