Cpp programs

Digital clock program in c++

Welcome back, readers! this post is going to be very special. We are going to discuss a c++ program to build a digital clock in c++. It will help us to practice conditional statements and loops which are essential concepts of c++ programming. Our digital clock program will get local time using time() function in “time_t” and “tm” type variables. …

Digital clock program in c++ Read More »

3×3 matrix multiplication in c++

Hello dear programmers! Do you think it’s hard to multiply matrices in c++? I don’t think so. In this post, I will explain 3×3 matrix multiplication in c++ in a very simple way. It will help you enhance your understanding of arrays and loops. These concepts seem too scary to most programming students but after understanding matrix multiplication, they will enjoy …

3×3 matrix multiplication in c++ Read More »

BMI program in c++

Welcome dear readers! Are You conscious about your health and usually get worried when you feel obese? In this article, we will write a c++ BMI program that will tell you whether you are obese, underweight, or fit. It will help us to practice our variables and conditional statements understanding.  The program will ask the user to enter his weight and …

BMI program in c++ Read More »

Scroll to Top