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 #55.0K
~502 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags
2 Posted Topics
This looks to me like C code and not C++ but to print only the values of the odd index numArrays[1], numArrays[3], numArrays[5] etc begin the for loop with i = 1 and then rather than using i++ which increments by one use i+=2 which increments i by two each …
Hi, I am trying to write code to read a text file containing velocity vector data in the form x, y, u, v. An example of the data file I am opening is: 0 1.0 3.24 45.64 1.5 2.5 54.34 23.45 ... I have a function which can read the …
The End.