2022-12-18 23:15:08 +00:00
|
|
|
#include "header.h"
|
|
|
|
|
2022-12-19 00:30:35 +00:00
|
|
|
#define LIMIT 8192
|
2022-12-18 23:20:30 +00:00
|
|
|
int main(int argc, char *argv[]){
|
2022-12-19 00:30:35 +00:00
|
|
|
long int array [LIMIT];
|
2022-12-18 23:15:08 +00:00
|
|
|
int index;
|
2022-12-19 00:30:35 +00:00
|
|
|
for(index = 0; index < LIMIT; index++) {
|
2022-12-18 23:15:08 +00:00
|
|
|
array[index] = index;
|
|
|
|
}
|
2022-12-18 23:20:30 +00:00
|
|
|
*argv = array;
|
2022-12-19 00:30:35 +00:00
|
|
|
return array[LIMIT-1] + argc;
|
2022-12-18 23:15:08 +00:00
|
|
|
}
|