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 dont understand what the question is asking

need some help

1 Answer

Stone Preston
Stone Preston
42,016 Points

"Declare 2 separate variables of type char named "alpha" and "bravo". Assign the letter 'a' to the variable "alpha" and the letter 'b' to "bravo"."

to declare a char variable:

char variableName = 's';

"Declare an array of type 'char' called "letters" with a size of 2. Assign the variable "alpha" as the first element of the array "letters"."

to declare a char array of a specific size (replace x with whatever size you want):

char someArray[x];

to assign a variable to a specific element of an array (replace x with the index that you want to assign to):

someArray[x] = someVariable;

this should help