Hi, i want to assign a char to an array inside an if statement after the user has input the grade as an integer, but it has to fill an array with characters, such as:
A, B, C, D, and F won't transfer to the array, thus giving me the uninitialized variable error in microsoft visual studio 2010. Can anyone help me? Thanks.
One other thing you want to fix is inside all your if/else if statements you're using < when you want to be using <=. Right now if you enter 60,69,70,79,80,89, or 90 you're program wont assign anything to letter_grade.