int main(void)
{
func();
func(6);
return 0;
}
int func(int x)
{
printf("hello world");
}
why this code gave no error and printed hello world twice ????
{
func();
func(6);
return 0;
}
int func(int x)
{
printf("hello world");
}
why this code gave no error and printed hello world twice ????
Comment