C language question
Last Answer : The Function Return Type The function return type specifies the data type that the function returns to the calling program. The return type can be any of C′s data types: char, int , long , float , or double . One ... r=max( 10,15); print( Result = %d , r); }
Show More