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

Ashley Wong
Ashley Wong
209 Points

Variable_Assignment part 2 Float Variable

I am supposed to make a printf statement for the float variable radius. I wrote: printf ("%f radius.\n", 'radius'); Please help! I don't know what I did wrong.

4 Answers

I think its because you have ' ' around radius. Shouldn't it be:

printf ("%f radius.\n", radius);
Ashley Wong
Ashley Wong
209 Points

I tried that also, it didn't work. The challenge told me that I was wrong

Okay so I checked the challenge. It says Here is what your output should look like: " A ball with a radius of 14.5 inches."

float radius = 14.5;
printf("A ball with a radius of %f inches",radius);
Ashley Wong
Ashley Wong
209 Points

I literally copied and pasted your response but it was still incorrect.

Sorry I edited my answer, didn't realize I had an @ symbol. Habit.