Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
#include <iostream>
#include <vector>

using namespace std;

int main()
{   
    vector <int> numbers;

    for (int i=0; i<10; i++) {
        numbers[i]=0;
        cout << numbers[i] << endl;
    }

    return 0;
}

I am just starting C++ and I have got this trouble. I would be very grateful if anyone could help me on this.

share|improve this question
What's the question, exactly? – Hasturkun Jul 24 '11 at 20:26
I am getting an output saying that DATA FORMATTER TEMPORARILY UNAVAILABLE WILL RETRY AFTER CONTINUE. I am not receiving any output for that. – Krishh Jul 24 '11 at 20:28
I don't have xcode, so I can't really check, but it looks like you are trying to set values in a vector that doesn't have space reserved. are you getting this message from the debugger? – Hasturkun Jul 24 '11 at 20:30
Thanks, I guess i did not reserve space. Thats the problem – Krishh Jul 24 '11 at 20:49

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.