Hello,
I was going through some code that I downloaded off the internet (Got it here)
I am confused with this line of code... What exactly is it doing?
#define N_RANDOM_WORDS (sizeof(randomWords)/sizeof(NSString *))
Here is the array of "randomWords":
static NSString *randomWords[] = {
@"Hello",
@"World",
@"Some",
@"Random",
@"Words",
@"Blarg",
@"Poop",
@"Something",
@"Zoom zoom",
@"Beeeep",
};
Thanks