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