项目作者: prakhargvp

项目描述 :
Object oriented Programming with C++
高级语言: C++
项目地址: git://github.com/prakhargvp/CPP.git
创建时间: 2017-03-04T04:03:01Z
项目社区:https://github.com/prakhargvp/CPP

开源协议:GNU General Public License v3.0

下载


CPP Programs

1. Constructor & Destructor

  • basic-flow.cpp : Basic Constructor & Destructor Calling
  • copy_constructor.cpp : Copy Constructor

    2. Exception Handling

  • 1.cpp : throw a division by zero error

    3. File Handling

  • 1.cpp : Single line read and write in a file.
  • 2.cpp : Multi line read and write in a file.

    4. Input Ouput : Basic input output in C++

  • input_output.cpp : Input & Ouput using C & C++ using namespace std at top
  • input_output.cpp : Input & Ouput using C & C++ without using namespace std at top

    5. Operator Overloading

  • Unary Minus Operator
  • Unary Plus Operator
  • Binary Minus (Subtraction)
  • Binary Plus (Addition)
  • Increment Operator (prefix & postfix)
  • Decrement Operator (prefix & postfix)
  • Shift Operator (left shift (<<) & right shift (>>) )
  • Subscript Operator ([])
  • cin Overload
  • cout Overload

    6. Other-Porgrams

  • remove-trailing-zeroes : To remove trailing zeroes from string

    7. STL : Standard Template Library

  • algortihm/sort.cpp : To sort an array in ascening & descending order using STL, sort function.
  • algortihm/reverse.cpp : To reverse an array using STL, reverse function.
  • container/vector.cpp : To implement int array using vector.