Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
ash committed Feb 6, 2017
1 parent f5cb80f commit e00fa50
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions 024.cpp
@@ -0,0 +1,16 @@
#include <stdio.h>

int func1() {
return 101;
}

inline int func2() {
return 202;
}

int main() {
int i = func1();
int j = func2();

printf("%i\n", i + j);
}
1 change: 1 addition & 0 deletions README.txt
Expand Up @@ -73,6 +73,7 @@ Functions
functions with no arguments
f(void)
main() arguments
* inline and optimization (-S -O3)

Overloads and templates
Overloaded functions
Expand Down

0 comments on commit e00fa50

Please sign in to comment.