#include <stdio.h> void main() { register int num = 10; if (num < 12) { num++; main(); } }
Segmentation fault
Previous Question Next Question
Your comments will be displayed only after manual approval.