Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 191 Bytes

6.40.md

File metadata and controls

9 lines (5 loc) · 191 Bytes

(a)

int ff(int a, int b = 0, int c = 0);  // OK

(b)

char *init(int ht = 24, int wd, char bckgrnd);
// Error, all the parameters followed `ht` must also have default argument.