5. What will be the output?
#include <stdio.h> display(){ printf("C\n"); main(); } int main(){ printf("Hey\n"); display(); return 0; }
It prints the following infinite times.....
Hey C