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 trialdarcyhegarty
1,177 PointsI 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.
2 Answers
Stone Preston
42,016 Pointschar variables need single quotes around them:
char alpha = 'a';
char bravo = 'b';
darcyhegarty
1,177 PointsGreat! Thanks! Man code is fanatical :)
darcyhegarty
1,177 Pointsdarcyhegarty
1,177 PointsThis discussion hasn't created second lines for the code I have written. Assume a new line whenever you see a ;