-
-
Save MosheBerman/5393205 to your computer and use it in GitHub Desktop.
An example where we call a wrapper function from main.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Prototypes */ | |
int sum(int, int); | |
void wrapper(); | |
/* Main program */ | |
int main() | |
{ | |
wrapper(); | |
return 0; | |
} | |
/* Program definition */ | |
void wrapper(){ | |
int xToAdd = 1; | |
int yToAdd = 1; | |
int z = sum(xToAdd, yToAdd); // z will become 2 here | |
} | |
int sum(int x, int y) | |
{ | |
return x+y; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment