1 | #include <cstring> |
2 | #include <string> |
3 | |
4 | struct Five { |
5 | int number; |
6 | const char *name; |
7 | }; |
8 | |
9 | Five returnsFive() { |
10 | Five my_five = {.number: 5, .name: "five" }; |
11 | return my_five; |
12 | } |
13 | |
14 | unsigned int fib(unsigned int n) { |
15 | if (n < 2) |
16 | return n; |
17 | else |
18 | return fib(n: n - 1) + fib(n: n - 2); |
19 | } |
20 | |
21 | int add(int a, int b) { return a + b; } |
22 | |
23 | bool stringCompare(const char *str) { |
24 | if (strcmp(s1: str, s2: "Hello world" ) == 0) |
25 | return true; |
26 | else |
27 | return false; |
28 | } |
29 | |
30 | int main(int argc, char const *argv[]) { |
31 | std::string str = "Hello world" ; |
32 | Five main_five = returnsFive(); |
33 | return strlen(s: str.c_str()); // break here |
34 | } |
35 | |