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

Garrett Lovell
Garrett Lovell
5,527 Points

Fundamentals of C - Code Challenge Part 2 of 2

I give up. What am I doing wrong?

float radius = 14.5;

printf("A ball with a radius of %f.\n", radius);

2 Answers

Stone Preston
Stone Preston
42,016 Points

IIRC you might need to put inches at the end of your string.

printf("A ball with a radius of %f inches.\n", radius);

also double check that period to make sure it needs to be there. The string needs to be exactly as asked for in the challenge.

can you link to the actual challenge?

Garrett Lovell
Garrett Lovell
5,527 Points

That was it. I didn't have inches on the end. Thank you!