mirror of
				https://github.com/openhwgroup/cvw
				synced 2025-02-11 06:05:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			237 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			237 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "header.h"
 | |
| 
 | |
| #define LIMIT 8192
 | |
| int main(int argc, char *argv[]){
 | |
|   long int array [LIMIT];
 | |
|   int index;
 | |
|   for(index = 0; index < LIMIT; index++) {
 | |
|     array[index] = index;
 | |
|   }
 | |
|   *argv = array;
 | |
|   return array[LIMIT-1] + argc;
 | |
| }
 |