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