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
C preprocessor

Takes care of macros
Takes care of conditional compilation
Takes care of include files
Acts before compilation
All of these

ANSWER DOWNLOAD EXAMIANS APP