forked from Github_Repos/cvw
11 lines
157 B
C
11 lines
157 B
C
|
#include "header.h"
|
||
|
|
||
|
int main(){
|
||
|
long int array [1024];
|
||
|
int index;
|
||
|
for(index = 0; index < 1024; index++) {
|
||
|
array[index] = index;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|