std;

  1. Nipun

    What are Private, Classes, Sub and such commands in C++?

    Hi again! I started to learn C++ sometime ago from NIIT, but unfortunately I had an accident and I was unable to complete the classes. I know the basics of C++, but I was thinking what are these commands/statements that I have seen in many programs: Private Class(I even dont know that :P) Sub...
  2. S

    C++:Adding two numbers

    We have just started C++ in college #include <iostream> using namespace std; main() { int a,b,c; cout<<"Enter two nos.:"; cin>> a >> b; c=a+b; cin.get(); cout<<"Sum is"<<c<<""; cin.get(); } but on compiling and running it{no errors here}nothing happens when i...
Top Bottom