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 Array

Vincent Weimer
Vincent Weimer
1,223 Points

Arrays

I have tried writing the program exactly as it is in the video, but I keep getting an error and a warning on my build with the following statement:

int primes[] = (2, 3, 5, 7);
printf("the first 4 prime numbers %d %d %d %d\n", primes[0], primes[1], primes[2], primes[3]);

Here is the warning: /Users/vincentweimer/Documents/Development/Anatomy of C/Arrays/MyFirstCProgram/main.c:23:27: Expression result unused

Here is the warning: /Users/vincentweimer/Documents/Development/Anatomy of C/Arrays/MyFirstCProgram/main.c:23:9: Array initializer must be an initializer list or wide string literal

Any thoughts?

2 Answers

Stone Preston
Stone Preston
42,016 Points

C arrays need to be initialized with { } around the values, not ( )

int primes[] = {2, 3, 5, 7};
printf("the first 4 prime numbers %d %d %d %d\n", primes[0], primes[1], primes[2], primes[3]);
Vincent Weimer
Vincent Weimer
1,223 Points

Gotcha. Guess that is what I get for coding without my glasses on. Thanks for the help!