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

I don't know why this isn't working.

Trying to assign letters to char variables e.g.:

char alpha = a; char bravo = b;

This won't pass. Since it's a challenge on arrays I thought this might work:

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

Struggling to understand how else to declare these variables under char.

This discussion hasn't created second lines for the code I have written. Assume a new line whenever you see a ;

2 Answers

Stone Preston
Stone Preston
42,016 Points

char variables need single quotes around them:

char alpha = 'a'; 
char bravo = 'b';

Great! Thanks! Man code is fanatical :)