4. new method
The code I did on day 3 ended up like this:
#include<stdio.h>
#define MAX 7
int main(){
int hours[MAX]; //array of int to store up to 7
int sum = 0;
printf("==============================================\n");
printf("welcome t...
bugquest.hashnode.dev2 min read