Skip to content

Instantly share code, notes, and snippets.

@daemonfire300
Created January 23, 2013 16:12
Show Gist options
  • Save daemonfire300/4608837 to your computer and use it in GitHub Desktop.
Save daemonfire300/4608837 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int a;
int b;
void max(int a, int b){
if(a > b){
cout << "a größer b" << endl;
}
else{
cout << "b größer a" << endl;
}
}
int main(int argc, char** argv)
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment