Mega Code Archive

 
Categories / C++ Tutorial / Pointer
 

Manually create a call-by-reference using a pointer

#include <iostream> using namespace std;     void neg(int *i);     int main() {   int x;       x = 10;   cout << x << " negated is ";       neg(&x);   cout << x << "\n";       return 0; }     void neg(int *i) {   *i = -*i; }