14 Five my_five
= {5, "five"};
24 return fib(n
- 1) + fib(n
- 2);
34 stringCompare(const char *str
)
36 if (strcmp( str
, "Hello world" ) == 0)
42 int main (int argc
, char const *argv
[])
44 std::string str
= "Hello world";
45 std::cout
<< str
<< std::endl
;
46 std::cout
<< str
.c_str() << std::endl
;
47 Five main_five
= returnsFive();
52 return 0; // Please test these expressions while stopped at this line: