Posts

Showing posts from June, 2019

Meme Nepal vs Bir Bikram 2 | We Asked: Special Episode #FreePranesh

Image

C++ Basic

What is C++? C++ is an object oriented programming language. It was developed by Bjarne Stroustrup at AT & T Bell Laboratories in Murray Hill Jersey, USA, in the early 1980's. C++ is an augmented(incremented) version of C. C++ is a superset of C. The most important features that c++ adds on to C are  classes ,  inheritance , polymorphism ,  function overloading  and  operator overloading . Applications of C++ C++ is a versatile language for handling very large programs. It is suitable for virtually any programming task including development of editors, compilers,databases, communication systems and any complex real life application systems. Questions and answer of Program /*    1.  Write a Program to read two numbers from the keyboard and display the larger value on the */ #include<iostream.h> #include<conio.h> void main() {     clrscr();     int a,b;     cout<<"Enter first number"<<endl;     cin>>a;     cout<<"Enter sec