WhatsApp us

Convert hours into minutes and seconds in C Programming

  • Tech Area
  • Last updated on: January 8, 2026



In this tutorial, We will see how to convert hours into minutes and seconds in C programming language.

Program to convert hours into minutes and seconds

#include<stdio.h>
#include<conio.h>
void main()
{
int h, m, s;
clrscr();
printf("Enter hours  ");
scanf("%d", &h);
m = h * 60;
s = m * 60;
printf("Minutes is = %d\n", m);
printf("Seconds is = %d\n", s);
getch();
}

Output

Enter hours 2
Minutes is = 120
Seconds is = 7200

The number 2 is entered by the user is stored in the h variable. Hours are converted into minutes using h * 60 and seconds using m * 60. And, minutes & seconds are stored in variable m and s respectively.

printf("Enter hours  ");
scanf("%d", &h);
m = h * 60;
s = m * 60;

The printf() function is used to print minutes and seconds.

printf("Minutes is = %d\n", m);
printf("Seconds is = %d\n", s);


Subscribe us via Email

Join 20,000+ subscriber

Subscribe on YouTube

PHP Projects
Matrimonial Portal Project in PHP & MySQL Last Updated: December 22, 2025
Event Management System Project in PHP & MySQL Last Updated: December 6, 2025
Online Shopping System Project in PHP MySQL Last Updated: November 26, 2025
Hostel management system project in PHP and MySQL Last Updated: February 14, 2024
Online Pizza Delivery project in PHP Last Updated: February 4, 2024
Parking Management System project in PHP Last Updated: November 5, 2023
Visitors Management System project in PHP Last Updated: August 28, 2023
SNIPE – IT Asset management system v6.1.0 Last Updated: April 21, 2023
Employee Management System project in PHP Last Updated: January 21, 2023