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

Keivon Hobeheidar
Keivon Hobeheidar
284 Points

%f

I believe I've answered the question correctly. However, it seems my %f is not recognized as proper formatting for float. Is there an error in my code, or is there something else happening here?

variable_assignment.mm
float radius = 14.5;

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

2 Answers

Probably it does not compile because you missed a comma separator in the printf function. It should look something like this:

float radius = 14.5;

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

Alex,

You were right. Thank you for the prompt response! I truly appreciate it!