extern void f( unsigned int );
extern void f( int );
extern void f( char );
int main() {
unsigned char uc;
f( uc );
return 0;
}
Which variant of the overloaded function f
will be called?unsigned char
occupies 1 byte and int occupies 4 bytes)
Ввійдіть щоб вподобати
Ввійдіть щоб прокоментувати