Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm new to C++ and just trying to get a hang of it. It generally seems not too bad, but I stumbled upon this weird/pathological segfaulting behavior:

int main () {
  int* b;
  *b = 27;
  int c = *b;
  cout << "c points to " << c << endl; //OK                                                                                                                                      
  printf( "b points to %d\n", *b); //OK                                                                                                                                          
  // cout << "b points to " << (*b) << endl; - Not OK: segfaults!                                                                                                               
  return 0;
}

This program, as given, produces what you'd expect:

c points to 27
b points to 27

On the other hand, if you uncomment the second-to-last line, you get a program that crashes (seg-fault) in runtime. Why? This is a valid pointer.

share|improve this question

2 Answers

up vote 5 down vote accepted

int* b points to an unknown memory address because it wasn't initialized. If you initialized it to whatever null value exists for your compiler (0 or NULL in C++, nullptr in C++0x), you'd most certainly get a segfault earlier. The problem lies in the fact that you allocated space for the pointer but not the data it points to. If you instead did this:

int c = 27;
int* b = &c;

cout << "c points to " << c << endl;
printf ("b points to %d\n", *b);
cout << "b points to " << (*b) << endl;

Things would work because int* b refers to a memory location that is accessible by your program (since the memory is actually a part of your program).

If you leave a pointer uninitialized or assign a null value to it, you can't use it until it points to a memory address that you KNOW you can access. For example, using dynamic allocation with the new operator will reserve memory for the data for you:

int* b = new int();
*b = 27;
int c = *b;

//output

delete b;
share|improve this answer

The pointer is valid in as much it's got a value. But the memory is probably not. It's your OS telling you that you are touching memory which isn't yours.

I'm frankly surprised it doesn't crash earlier than that.


Here's why:

int* b; // b is uninitialized.
*b = 27;

Where does b point? It might be somewhere valid, or somewhere totally off-limits. You can usually bet on the latter.

Here's a better way to do what you want.

int b1 = 27;
int *b = &b1;

Now b points to the location on the stack where b1s value is stored.

share|improve this answer
You're just telling him what a seg fault is, not really solving the problem. – Dhaivat Pandya May 22 '11 at 1:49
@Dhaivat Pandya - he just answered the OP answer. the solution is pretty clear. – Binyamin Sharet May 22 '11 at 1:51
Ok. So is the solution that I need to use new to make the int* hold a valid address? – magus pwnsen May 22 '11 at 1:51
Wait, so, why doesn't the second last line work? (sorry for being a thickhead) – Dhaivat Pandya May 22 '11 at 1:52
There's probably a good reason, but it doesn't really matter. This is an undefined behavior. – Binyamin Sharet May 22 '11 at 1:54
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.