Added header.h

This commit is contained in:
anon 2024-03-10 15:57:35 +01:00
parent 1a149d15d7
commit 616dc7fccb

10
header.h Normal file
View File

@ -0,0 +1,10 @@
#define FUNSIZE 32
int fun(){
int a[FUNSIZE];
int r = 0;
for(int i = 0; i < FUNSIZE;){
r += a[i];
i++;
}
return r;
}