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 trialJosh Johnson
144 PointsNOOB me
I can't figure out what I'm missing here. Pls gimme a hint other than the unhelpful Bummer! msg.
2 Answers
Stone Preston
42,016 Pointsyou 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';
Josh Johnson
144 PointsDang. I knew it was easy. Thank you v. much!
Josh Johnson
144 PointsJosh Johnson
144 Pointschar alpha[1]; alpha[0]='a'; char bravo[1]; bravo[0]='b';