Skip to content
Snippets Groups Projects
array.e 73 B
int main(){
  int t[10];
  t[0] = 5;
  t[1] = 3 + t[0];
  return t[1];
}