#include <stdio.h> void main() { int n = fun(); printf("%d", n); } void fun() { printf("Welcome "); }
Welcome 8
Previous Question Next Question
Your comments will be displayed only after manual approval.