#include struct vector { int x; int y; int z; }; int main(void) { //////////////// DO NOT CHANGE ANY OF THE CODE BELOW HERE ////////////////// struct vector first_vector; struct vector second_vector; // Scans in vector values from user // Carefully read how these scanf's work ~ Try to understand it printf("Please enter the values of the first vector (x, y, z): "); scanf("%d %d %d", &first_vector.x, &first_vector.y, &first_vector.z); printf("Please enter the values of the second vector (x, y, z): "); scanf("%d %d %d", &second_vector.x, &second_vector.y, &second_vector.z); struct vector sum_vector; //////////////// DO NOT CHANGE ANY OF THE CODE ABOVE HERE ////////////////// //////////////////////////////////////////////////////////////////////////// ///////////////////// ONLY WRITE CODE BELOW HERE /////////////////////////// //////////////////////////////////////////////////////////////////////////// // TODO: Fill in `sum_vector` by adding each component of `first_vector` // and `second_vector` //////////////////////////////////////////////////////////////////////////// ///////////////////// ONLY WRITE CODE ABOVE HERE /////////////////////////// //////////////////////////////////////////////////////////////////////////// printf("The resulting sum vector is:\n"); printf("x: %d\n", sum_vector.x); printf("y: %d\n", sum_vector.y); printf("z: %d\n", sum_vector.z); return 0; }