You are on page 1of 1

Explain the following:

void Cheong ( );

How to call these functions ? WRONG !!


Cheong ( void ); OR Cheong ( );

Cheong ( 0 );

int Soon ( int , int ); Soon (int, int); WRONG !! int result; result = Soon (5, 10);

Soon (5, 10);


Char Nyean (char X, int Y); int result; WRONG !! result = Nyean (A , 10);

char result; result = Nyean (A , 10);

You might also like