A Grade Calculator
#include <stdio.h>
/*
* main - a function that prints the grade of students
* grades - A=80 ... 100, B=70...79, C=60...69, D=50...59, E=40...49, F <40
* the grades will be broken down sub-grading
*/
int main(void)
{
int score;
printf...
mnbaiden.hashnode.dev1 min read