C Programming
What is right way to Initialize array?

int n{} = { 2, 4, 12, 5, 45, 5 };
int n{6} = { 2, 4, 12 };
int n(6) = { 2, 4, 12, 5, 45, 5 };
int num[6] = { 2, 4, 12, 5, 45, 5 };

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

comes before the first executable statement
need not start on the first column
need not start on a new line
has # as the first character

ANSWER DOWNLOAD EXAMIANS APP