//============================================================================ // Name : vaihda.cpp // Author : vesal // Version : // Copyright : Your copyright notice // Description : Hello World in C++, Ansi-style //============================================================================ #include #include //using namespace std; void vaihda(int *a,int *b) { // C int t = *a; *a = *b; *b = t; } void vaihda2(int &a,int &b) { // C++ int t = a; a = b; b = t; } int main(void) { int a = 4; int b = 5; vaihda(&a,&b); vaihda2(a,b); std::string s = "Kissa"; cout << s; cout << "a=" << a << " b=" << b << endl; }