Skip to content

Instantly share code, notes, and snippets.

@aldajo92
Created May 25, 2017 14:54
Show Gist options
  • Save aldajo92/e80baec9a583e272218766a79ef322c5 to your computer and use it in GitHub Desktop.
Save aldajo92/e80baec9a583e272218766a79ef322c5 to your computer and use it in GitHub Desktop.
exampleFunction.c
#include <iostream>
#include <string>
using namespace std;
void number(int value){
cout << "Hello, the number is " << value << "!\n";
}
int main()
{
number(5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment