41
Made by : Ahsan Ali 13-Arid-1606 OOP Presentation

Oop object oriented programing topics

Embed Size (px)

Citation preview

  1. 1. 13-Arid-1606 OOP Presentation
  2. 2. Source Code : In computing, source code is any collection of computer Instructions (possibly with comments) written using some human- readable computer language, usually as text. Object Code : The source code is often transformed by a compiler program into low- level machine code understood by the computer.
  3. 3. Operators : Math Operators. Comparison . Logical Operators. Math Operators : + addition - subtraction * multiplication / division % modulus operator +, -, *, and / can be used with integral and floating-point data types
  4. 4. Comparison Operators : = > < LogicalOperators : && ! ||
  5. 5. Data Types : Three categories of simple data Integral: integers (numbers without a decimal) Floating-point: decimal numbers Enumeration type: user-defined data type
  6. 6. Integral data types are further classified into nine categories:
  7. 7. Cout (used to show output) The stream insertion operator is > feet >> inches; Inputs two integers from the keyboard Places them in variables feet and inches respectively
  8. 9. Preprocessor Directives C++ has a small number of operations Many functions and symbols needed to run a C++ program are provided as collection of libraries Every library has a name and is referred to by a header file Preprocessor directives are commands supplied to the preprocessor All preprocessor commands begin with # No semicolon at the end of these commands
  9. 10. Syntax to include a header file: #include For example: Causes the preprocessor to include the header file iostream in the program
  10. 11. Loop (Repetition) : 1. The while loop (loop until a condition becomes false). 2. The do...while loop (recommended when you need to run the loop at least once). 3. The for loop (best when there's a counter involved) .
  11. 12. For Loop :
  12. 13. Examples : (For Loop) Int main () { For(int i=0 i ; i