Skip to content

Instantly share code, notes, and snippets.

@embed
Created July 22, 2009 20:11
Show Gist options
  • Save embed/152238 to your computer and use it in GitHub Desktop.
Save embed/152238 to your computer and use it in GitHub Desktop.
#include<iostream>
using namespace std;
void f(int x)
{
x=5;
}
int main(int argc, char *argv[])
{
int i;
cout << "fonksiyondan once i= " << i << endl;
f(i);
cout << "fonksiyondan sonra i= " << i << endl;
return 666;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment