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>
usingnamespace 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;
}