How to Do Vector Addition in "C"
- 1). Open the C programming file that contains your vectors in your editor of choice.
- 2). Note the variable names of the two vectors that you wish to add, such as "vectorOne" and "vectorTwo."
- 3). Type "array vectorAdd = vectorOne + vectorTwo;" to add the two vectors together and set the sum equal to the new "vectorAdd" variable when your program executes.