Category: Programming

Read our latest blog posts

Very Simple C++ programs – Nested loops Demonstration/Examples

These are four very simple C++ programs which demonstrate how to use nested loops. Problem is that we have to print some simple patterns of integers. So, let's do it.

Continue reading

Revised Version: C++ program to check whether a number is prime or not

It is a revised version of one of my programs named C++ program check whether a number is prime or not. It has been improved according to the suggestions of...

Continue reading

C++ program to check whether a number is complete square or not

A c++ program to check whether a number taken as input from the user is a complete square or not. It makes use of three variables, a while loop and...

Continue reading

C++ program to check whether a number is prime or not

A c++ program to check whether a number entered by the user is prime or not. This program uses three variables, a while loop and a few if selection statements....

Continue reading

A Python Program to print multiplication table of any natural number

I am just beginning in the world of computer programming with python as my first language. Yesterday, I wrote a very simple program which, when executed, ask us for a...

Continue reading