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 trialBrendan Griffin Lyddon
121 Pointschar help
hi, having a little difficulty with creating the 2 separate "alpha and bravo" char strings in the second challeng
4 Answers
Brendan Griffin Lyddon
121 Pointschar abbreviations [ ] = {a,b}
printf("alpha is called %c\n", abbreviations [0]);
printf("bravo is called %c\n", abbreviations [1]);
Brendan Griffin Lyddon
121 Pointsthe video before this challenge did not go over using char so i kinda just guessed on this
John W
21,558 Pointschar is explained in the video before that: http://teamtreehouse.com/library/objectivec-basics/fundamentals-of-c/variables
but your solution is very very close to being correct.
Brendan Griffin Lyddon
121 Pointsahh now i see thank you
John W
21,558 PointsJohn W
21,558 PointsWhat have you tried so far? Post your code here, maybe?