You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
119 B

char array[20*4096];
int i=0,j=0;
int main(){
for(i=0;i<20;i++){
for(j=0;j<4096;j++){
array[i*4096+j]='s';
}
}
}