07-21-2006, 09:06 PM
|
#12 (permalink)
|
|
Dante’s Inferno
Join Date: May 2006
Location: OLD PROFILE. NEW: NOODLEPOWA
Posts: 608
Reputation: 10
|
Should I alternate between the two when this happens?
Code:
#include <iostream>
using namespace std;
int main()
{
int i = 2;
int* n = i;
int *a, *b, *c;
cin.get();
return 0;
}
|
|
|