function concept
Posted
by anurag18294
on Stack Overflow
See other posts from Stack Overflow
or by anurag18294
Published on 2010-04-20T04:41:39Z
Indexed on
2010/04/20
4:43 UTC
Read the original article
Hit count: 317
turboc++
void execute(int &x,int y=100) { x=x+y; cout<
will the following program work in spite of not assigning a default value to the x(formal parameters in the fuction prototype).
© Stack Overflow or respective owner