Skip to content

Instantly share code, notes, and snippets.

@Cammila
Created May 29, 2013 20:18
Show Gist options
  • Save Cammila/5673489 to your computer and use it in GitHub Desktop.
Save Cammila/5673489 to your computer and use it in GitHub Desktop.
array02
#include <stdio.h>
#define MAXVETOR 20000
int main (){
int v[MAXVETOR];
int i;
for(i=1; i<=MAXVETOR; i++)
v[i - 1] = i;
printf("%d %d %d\n", v[999], v[4999], v[19999]);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment