float array c++ code example
Example 1: c++ float array zero
float arr1[10] = { }; // all elements are 0
float arr2[10] = { 0 }; // all elements are 0
float arr3[10] = { 1 }; // first element is 1, all others are 0
float arr4[10] = { 1, 2 }; // first element is 1, second is 2, all others are 0
Example 2: how to make a float in C++
public float whatYourFloatIsCalled = 0;
public float whatIsYourFloat;