Ask your own question, for FREE!
Computer Science 15 Online
OpenStudy (anonymous):

Hi, I'm following the coding example from K&R "The C Programming Language". The code (below) produces a Thread 1: breakpoint 1.1 message. Any advice? Running in Xcode and am typing the code as read in the book. Thank you! #include #define LOWER 0 #define UPPER 300 #define STEP 20 /*print Fahrenheit-Celcius table*/ int main () { int fahr; for (fahr = LOWER; fahr <= UPPER; fahr = fahr + STEP) printf("%3d %6.1f\n", fahr, (5.0/9.0)*(fahr - 32)); }

OpenStudy (rbx):

I am not familiar with Xcode environment but I think you have placed a breakpoint while editing the code. So when debugging, the execution pauses at that point. In most IDEs, the breakpoint is enabled by clicking the line number at the left (which generally places a red circle to indicate the breakpoint), click it to disable it.

OpenStudy (anonymous):

ya i think @RBX is correct... @coreylvaughn try to compile your code in this compiler.... http://www.compileonline.com/compile_c_online.php

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!