RosettaCodeData/Task/Call-a-function/C++/call-a-function-2.cpp

6 lines
132 B
C++
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
/* passing arguments by value*/
/* function with one argument */
bar(arg1);
/* function with multiple arguments */
baz(arg1, arg2);