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 trialIrwin 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,108 PointsDino Paškvan
Courses Plus Student 44,108 PointsCould you paste your code here? It'll be much easier to figure out what the problem is that way.