A big part of the problem is that Sodas[5] is out of the bounds of your array. Remember in C++ arrays start at zero and end at size - 1. You should also be checking that your loop doesn't exceed the bounds of your array.
Also unless you overload the operator<< you can't just print the structure, you'll need to print the individual elements of the structure.