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

Code Challenge problem

I done everything right but on the last task, it says i have that the correct character for char is %c and i already put it! HELP!!!

printf("letters %c b\n", letters[0], letters[1]);

Amit Bijlani
Amit Bijlani
Treehouse Guest Teacher

You have two arguments but only one placeholder %c. You need to match the number of placeholders with the number of arguments to the right namely: letters[0], letters[1]. Not sure why you have a 'b' there

sorry wrong code its this one printf("letters a b %c\n", letters[0], letters[1]);

Amit Bijlani
Amit Bijlani
Treehouse Guest Teacher

You still have the same problem. Please see my previous comment.

I got it thanks Amit means a lot!!! Thanks!!

1 Answer

Which code challenge is it, and what is the question it is asking?

its code challenge ARRAYS for objective c and its task 4!