How to initialize one dimensional array in c?
Score: 4.7/5 (26 votes) One way is to initialize one-dimentional array is to initialize it at the time of declaration. You can use this syntax to declare an array at the time of initialization. int a[5] = {10, 20, 30, 40, 50}; int a[5] = {10, 20, 30, 40, 50};How do you initialize a one-dimensional a...