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