Recent content by beatlesben

  1. B

    Schools What graduate college is best for me?

    I agree with you, unfortunately I don't have much of a choice in the matter for other reasons. I'm just looking to see if I'm missing any schools in this location that are good schools.
  2. B

    Schools What graduate college is best for me?

    I'm a junior right now, I have a 3.96 GPA and I'm a math and physics major with a computer science minor. Alright, now that that's out of the way, I'm starting to look into graduate schools now. A few restrictions I have, I live in Nassau County, on Long Island; so I'm looking for schools within...
  3. B

    C/C++ C++ Pointers: Solving "g is not defined" & "return" Meaning

    Thanks for the quick responses. It worked perfectly!
  4. B

    C/C++ C++ Pointers: Solving "g is not defined" & "return" Meaning

    Hello, I'm teaching myself C++. I'm pretty much at level one. Anyway I was trying to make a code, playing with pointers: #include <iostream> using namespace std; int main() { int x; int g; int *p; x = 1 + g; cin>> g; p = &x; cin.ignore(); count<< *p <<"\n"; cin.get()...