e.g. The func returns 11 on this execution? Can anyone elucidate its reason?
Code:
func()
{
printf("Hello World");
}
int main()
{
func()
return 0;
}
Comment