problem in xcode rly need help

Hi i am new to programming and was making a simple program and I dont get an error, but when i run in out put i get a thing that says lldb in blue. On line
8 it shows a little green thing and says thread 1 breakpoint 1.1 how do i get rid of this and run my prog plz. Help is highly appreciated :)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19


#include <iostream>
using namespace std;
int main()
{
    int x = 5, y = 17, z = 72;
    cout<<"Before: " << "x:" << x;
    cout<< "y:" << y;
    cout<< "z:"<< z;
    z = x + 24;
    x = y + 32;
    cout<< "now, ";
    cout<< "x:" << x;
    cout<< "y:" << y;
    cout<< "z:" << z;
    
    
}
Try clicking on the little green thing.
Are you using OS X
yes, os x, and i tried clicking but didnt work.
Hmmm... I use windows so I don't know much...
cause it works perfectly on windows
Last edited on
Iwatched this video and didn't see any special thing like API's to add, so I dont know the problem??? http://www.youtube.com/watch?v=rkL-TX5mEhw
Hi i resolved the issue thank you guys very much for the help :)
Thanks for replying, but can I know what the problem was?
aceix, I really dont know lol Im sorry It just stopped, I think cause I right clicked it. Thanks again
Topic archived. No new replies allowed.