Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Objective-C Basics (Retired) Fundamentals of C Variables

Joshua Harris
seal-mask
.a{fill-rule:evenodd;}techdegree
Joshua Harris
Full Stack JavaScript Techdegree Student 3,674 Points

Output only displays (lldb)

I cannot seem to get any results out of the output section, it only displays (lldb) in blue letters. Here is my code:

include <stdio.h>

int main() { int days_in_a_week = 7; float cm_to_in = 2.54;

char the_w;
the_w = 'W';


printf("%d days in a week.\n", days_in_a_week);
printf("%f cm per in.\n", cm_to_in);
printf("The %c is a cool hotel\n", the_w);

return 0;

}

I couldn't find any errors and I've watched the video a few times to try and retrace my steps but the output never produces anything other than this blue (lldb) sign. Any suggestions?