float myArray[myArraySize] = {1};
In the expression above only the first element is init with 1. How can you init all the elements with a value using a compound literals(not memset)?In the exp
float myArray[myArraySize] = {1};
In the expression above only the first element is init with 1. How can you init all the elements with a value using a compound literals(not memset)?In the exp