#include <stdio.h> int main() { void fun(); printf("Interview "); fun(); } void fun() { printf("Mania"); }
Interview Mania
Previous Question Next Question
Your comments will be displayed only after manual approval.