namespace

  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. arpanmukherjee1

    C# Exception Problem

    hello, i am designing a form with a datagridview and assigning different fonts in all the cells. the prob is ArgumentException is thrown at random times when sLang.ShowDialog(). when the form is open. designer, code , resx file and "font folder" included:> Free File Hosting & Video...
  3. S

    help!

    I am trying to self learn c++ and the first program mentioned in my book is #include <iostream> using namespace std; int main() { cout << "c++ is better than c.\n "; return 0; } In which of the digit's cd/dvd, the program which can execute this code is given?
  4. 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