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
Caleb Kleveter
Treehouse Moderator 37,862 PointsNothing happens when I try to run the "Hello World" program
When I try to play the "Hello World" program in Xcode nothing happens, I am using version 5.1.1 and am clicking on Build and Run.
5 Answers
Cole Wilkes
4,556 PointsWhat does your code look like?
Caleb Kleveter
Treehouse Moderator 37,862 PointsIt's the stuff that you down load.
//
// main.c
// MyFirstCProgram
//
// Created by turner on 9/26/13.
// Copyright (c) 2013 treehouse. All rights reserved.
//
#include <stdio.h>
int main()
{
// insert code here...
printf("Hello, World!\n");
return 0;
}
Aimee Ault
29,193 PointsIt should print the "Hello, World" to the console window when you build and run. If that's hidden, you can unhide it by using the shift-command-C keyboard shortcut.
Caleb Kleveter
Treehouse Moderator 37,862 PointsThe page opened but there was nothing on it.
Cole Wilkes
4,556 PointsIn the top right corner of Xcode there are 3 buttons. Click the middle one. "Hide or show the debug area"
Caleb Kleveter
Treehouse Moderator 37,862 PointsI don't see it any where.