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

float radius = 14.5; printf ("a ball with a radius %f \n", radius)t working its no

its telling me it wrong

variable_assignment.mm
float radius  = 14.5;
printf ("a ball with a radius %f \n", radius)
Enrique Munguía
Enrique Munguía
14,311 Points

make sure you write the message with the exact same capitalization

1 Answer

Hi ihab seif , always remember to end an instruction with the semicolon ;

float radius  = 14.5;
printf ("a ball with a radius %f \n", radius);