#include int main() { extern void hello(int n); hello(10); return 0; } void hello(int n) { if (n > 0) { printf("Hello\n"); hello(n - 1); } }