Tag Archives: CPP-Basic

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 »