C Programming
What is right way to Initialize array?

int n{6} = { 2, 4, 12 };
int n{} = { 2, 4, 12, 5, 45, 5 };
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

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

ANSWER DOWNLOAD EXAMIANS APP