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 trialJose Macias
1,545 PointsCode 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!!!
Jose Macias
1,545 Pointsprintf("letters %c b\n", letters[0], letters[1]);
Amit Bijlani
Treehouse Guest TeacherYou 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
Jose Macias
1,545 Pointssorry wrong code its this one printf("letters a b %c\n", letters[0], letters[1]);
Amit Bijlani
Treehouse Guest TeacherYou still have the same problem. Please see my previous comment.
Jose Macias
1,545 PointsI got it thanks Amit means a lot!!! Thanks!!
1 Answer
Colton Whited
516 PointsWhich code challenge is it, and what is the question it is asking?
Jose Macias
1,545 Pointsits code challenge ARRAYS for objective c and its task 4!
Amit Bijlani
Treehouse Guest TeacherAmit Bijlani
Treehouse Guest TeacherPlease post your code