Cplusplus

4 posts
Recent Articles

What is C++

C++ is as an extension of C, and both languages have almost the same syntax. The main difference between C and C++ is that C++ support Object oriented programming (OOPs) paradigm, while ...read more

Hello World! program in C++

Problem statement : Start from the famous 'Hello World' code. This program prints 'Hello World' when executed. Explanation : The 'Hello World' is a common or simple example to check compiler and ...read more