Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
2 Posted Topics
Re: Hello, First off, a couple of things have to be known. 1) Do you know how to read in the data and sperate it into just regualar variables? 2) Do you know how to construct a strut variable type? 2) Do you know how to make an array of structs? … | |
Re: Here this code should help. You need to do it manually, send the function to do the saving the pointer the the array, and the number of elements in the array. [CODE] #include <fstream.h> void saveArray(float* array, int length); int main() { float floatArray[] = { 15.25, 15.2516, 84.168, 84356}; … |
The End.