C
c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Supposed to print this 1000 times.
/// This will definitely hit 1000; it just won't stop.
#include <stdio.h>
int main() {
//int i=0;
char c[1] = "";
c[9]=1; // 13 if you uncomment the int
printf("Sololearn is Awesome");
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run