//Write a program convert.c that //prompts the user enter the number of hours //calculates how many minutes that is equivalent to //prints out the number of minutes //See sample output below: //$ ./convert //Please enter the number of hours: 2.5 //That is 150.00 minutes #include int main(void){ return 0; }