csci4061/notes/03-process-basics-code/overflow.c~
Michael Zhang 041f660ccd
f
2018-01-29 17:28:37 -06:00

9 lines
175 B
C

#include <stdio.h>
int main(int argc, char *argv[]){
char *a[3] = {'A','B','C'};
for(int i=1; ; i++){
printf("%c",a[i]);
if(i%40 == 0){
printf("\n");
}