Category Archives: C++

Why Learn C++?

C++ is known to be a very powerful language. It is often used to develop game engines, games, and desktop apps. Many AAA title video games are built with C++. Students and working professionals should learn the C++ language to become great Software Engineer. These are top reasons to learn C++. It’s easy for a coding beginner to… Read More »

Division of two numbers in C++

In this article, we have discussed various methods to divide two numbers in C++. These are simple program, you can learn them easily. Method-1 : With Hardcoded Inputs Output: 2 Method-2 : With user Inputs Output: Output depends on user inputs, that will be division of both numbers. Method-3 : With class Output: Output depends on user inputs,… Read More »

Difference between C and C++

1. C language : C was developed by Dennis Ritchie between the year 1969 and 1973 at AT&T Bell Labs to write Operating System. It is a procedural programming language and does not support classes and objects. 2. C++ language : C++ was developed by Bjarne Stroustrup in 1979. It has imperative, object-oriented and generic programming features. C++… Read More »

What is conio.h and why do we use?

The word conio.h stands for console input-output and in programming, console means output window which is the window where the result of the execution of our program is displayed. This console window is automatically produced by our operating system and has some default settings. ‘conio.h’ is a header file used in C and C++. Most people don’t use it because… Read More »