#include stdio.h
void myFn();
int main() {
myFn();
printf("Hello");
return 0;
}
void Fn() {
printf("Sookshmas!");
}
Output of the above code is?

Posted on by