mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-24 21:44:29 +00:00
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;
|
||
|
}
|