Created
November 28, 2019 09:07
-
-
Save darbotron/cfedbc33fa28d07977969da9ae73656d to your computer and use it in GitHub Desktop.
C/C++ Low Level Curriculum - Part 2 - Simple Program
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
int AddOneTo( int iParameter ) | |
{ | |
int iLocal = iParameter + 1; | |
return iLocal; | |
} | |
int main( int argc, char** argv ) | |
{ | |
int iResult = 0; | |
iResult = AddOneTo( iResult ); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment