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 Arrays

simon fraboulet
simon fraboulet
3,405 Points

Bummer message

Hi,

Can someone tell me what's wrong in there pls?

char alpha_a; alpha_a = 'A';

char bravo_b; bravo_b = 'B';

1 Answer

Stone Preston
Stone Preston
42,016 Points

the challenge asks for your variables to be named alpha and bravo, not alpha_a and bravo_b. It also asks for their values to be 'a' and 'b', not 'A' and 'B'.

the challenge engine is very picky, you must follow directions exactly, name all variables as asked for, etc. It only knows one right answer most of the time, so you have to be sure you give it what its expecting