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

NOOB me

I can't figure out what I'm missing here. Pls gimme a hint other than the unhelpful Bummer! msg.

char alpha[1]; alpha[0]='a'; char bravo[1]; bravo[0]='b';

2 Answers

Stone Preston
Stone Preston
42,016 Points

you are tasked with creating two char variables named alpha and bravo and assigning them the values 'a' and 'b', not two char arrays. to create a char variable and assign it a value:

char someChar = 'z';

Dang. I knew it was easy. Thank you v. much!