Created
October 16, 2016 02:14
-
-
Save BSVino/06421c647d686830e5b4b2f8f217476b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#include <cstdint> | |
uint64_t FinalSum(uint64_t a, uint64_t b, uint64_t c, uint64_t d) { | |
return a + b + c + d; | |
} | |
uint64_t Sum(uint64_t a, uint64_t b, uint64_t c, uint64_t d) { | |
return FinalSum(a, b, c, d); | |
} | |
int main(int argc, char** args) { | |
return (int)Sum(1, 2, 3, 4); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment