Write a program that assign time in hours and print in minutes
Answers
Answered by
1
Answer:
#include <stdio.h>
int main()
{
int h, m;
printf("Input time in hours: ");
scanf("%d", &h);
m = h*60;
printf("So time in minutes -%d\n",m);
return 0;
}
Agrima100:
what will be the output .??
Similar questions