Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Irwin Gonzales
1,138 PointsI hit an error
I am on the first challenge and I hit the error warning "expected expression". what do I do?

Irwin Gonzales
1,138 PointsMassive 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
11,915 Points@autoreleasepool {
float radius = 14.5;
printf("radius has the value of %f.\n", radius);
// move your return below the }
}
return 0;
}

Irwin Gonzales
1,138 PointsThank you so much!
Dino Paškvan
Courses Plus Student 44,107 PointsDino Paškvan
Courses Plus Student 44,107 PointsCould you paste your code here? It'll be much easier to figure out what the problem is that way.