@accoolaryan-BYyoWn
•
Oct 25, 2024
Oct 25, 2024
1.5K
what is the output and why?
😕
int main()
{
int fun();
printf("%d",fun());
getch();
return 0;
}
fun(){
return 011;
}