C++ Introduction

C++ is a powerful general-purpose, case-sensitive, free-form programming language that supports object-oriented, procedural, and generic programming. It is a mid–level language as it comprises both low and high-level language features. C++ programming language developed by Bjarne Stroustrup starting in 1979 at Bell Labs in Murray Hill, New Jersey. It was developed as an enhancement to … Read more

Features of C++

C++ is an Object-Oriented Programming Language, which is its main feature. It can create and destroy objects while programming. As it is an enhancement to C, hence it possesses all the features offered by C along with its new important feature (Object-Oriented Programming, operator overloading, error handling, etc). What are the Features of C++ programming … Read more

Autobiographical Number in Java

In this tutorial, we will write an Autobiographical Number Program in Java and also learn what is Autobiographical Number. Autobiographical Number An autobiographical number is a number such that the first digit of it counts how many zeroes are there in it, the second digit counts how many ones are there, and so on. Basically, it counts … Read more

Java Program to Display the ATM Transaction

In this tutorial, we will write an ATM program in Java. The program will represent the ATM transaction executed. Operation available in the ATM Transaction are: Withdraw Deposit Check Balance Exit The user will choose one of the above operations: Withdraw is to withdraw the amount from an ATM. The user is asked to enter … Read more

Spy Number in Java

In this tutorial, we will write java programs to check for Spy Numbers. We will look at two different java programs son Spy Number Java Program to Check If a Number is Spy number or not. Java Program to print all the Spy Number within a given Range. What is Spy Number? A number is … Read more

C Program to Multiply Two Matrices

In this section, we will write a C Program to Multiply Two Matrices using multi-dimensional array. You may go through the c topics below, before starting. Matrix multiplication in C: We can add, subtract, multiply or divide two matrices in C. The program takes inputs for the numbers of rows and columns and elements themselves. And … Read more

C Program to Access an element in 2-D Array

In this tutorial, we will write a Program to access an element in 2D Array in C. Before that, you should have knowledge of the following C programming topics. Accessing Array Elements 2D Array is of 2 Dimensional, one determines the number of rows and another is for columns.Example: arr[0][1] refers element belonging to the zeroth … Read more