Don't like ads? PRO users don't see any ads ;-)
Guest

main.cpp

By: Mundoo on Jul 11th, 2012  |  syntax: None  |  size: 0.33 KB  |  hits: 31  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #include <cstdlib>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. class kitty {
  7.       public:
  8.              unsigned int weight;
  9.              unsigned int height;
  10.              };
  11.  
  12. int main(int argc, char *argv[])
  13. {
  14.     kitty Furry;
  15.     Furry.weight = 5;
  16.     cout<<Furry.weight;
  17.     system("PAUSE");
  18.     return EXIT_SUCCESS;
  19. }