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

char help

hi, having a little difficulty with creating the 2 separate "alpha and bravo" char strings in the second challeng

What have you tried so far? Post your code here, maybe?

4 Answers

char abbreviations [ ] = {a,b}
printf("alpha is called %c\n", abbreviations [0]);
printf("bravo is called %c\n", abbreviations [1]);

the video before this challenge did not go over using char so i kinda just guessed on this

char 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.

ahh now i see thank you