Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download
Project: Public Code
Views: 852
1
#include <stdio.h>
2
3
void overflow(int a){
4
overflow(a);
5
}
6
7
int main(void) {
8
overflow(3);
9
return 0;
10
11
}
12
13