int max(x,y)
int x,y;
{
return x>y?x:y;
}
This code is working without any errors. Can a function take arguments without data types and later define it with specific datatype?
int max(x,y)
int x,y;
{
return x>y?x:y;
}
This code is working without any errors. Can a function take arguments without data types and later define it with specific datatype?