void foo();
int main()
{ void foo(int);
foo(1);
return 0;
}
void foo(int i)
{
printf("2");
}
Answers
Answered by
4
Answer:
what is mean by this tell fast
Similar questions