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

I hit an error

I am on the first challenge and I hit the error warning "expected expression". what do I do?

Could you paste your code here? It'll be much easier to figure out what the problem is that way.

Massive thanks! here is the code I put

{

float radius = 14.5; printf("radius has the value of %f.\n", radius); return 0;

}

I tried line for line, nothing seems to be working out.

2 Answers

Dave Ko
Dave Ko
11,915 Points
@autoreleasepool {

        float radius = 14.5;
        printf("radius has the value of %f.\n", radius);

        // move your return below the } 
    }
    return 0;
}

Thank you so much!