Computer Programming and Fundamentals Flashcards
C Programming Language was developed in early
1970s by
Dennis Ritchie
C++ was based on
C programming language
Developed in early 1980s by
Bjarne Stroustrup
is a Danish
computer scientist.
He is currently Professor and holder of the College of
Engineering Chair in Computer Science at Texas A&M
University.
Bjarne Stroustrup (Be-ar-neh or By-ar-ne Strov-stroop)
the file that contains the program you
prepared in the editor after you save it. (.cpp)
Source file
header files such as iostream.h
Header file
performs preliminary operations on
files before they are passed to the compiler.
Pre-processor
translates the source code to machine
language.
Compiler
Anatomy of C++
Include Directives
Header Files
Function main
Body
Statement
Return statement
are the reserved words in any language
which have a special pre-defined meaning and cannot
be used for any other purpose.
Keywords
C++ Data Types
Integer Values
Floating Point Numbers
Text Data Type
Refers to the logic of a program and a step-by-step description of
how to arrive at the solution of a given problem
ALGORITHM
is a pictorial representation of an algorithm
Flowchart
FLOWCHART BASIC
SYMBOLS
Terminal
Input/Output
Processing
Decision
Flow lines
Connectors
includes all the possible characters that can be utilized in a programming language. A character set denotes any alphabet, digit or symbols to represent information.
character set
in
programming languages is a set of values and the
operations on those values.
A data type (or datatype)
is a type of data
that holds whole numbers
Integer
number comes from the fact that there is no
fixed number of digits before and after the
decimal point; that is, the decimal point can
float.
Floating-point
usually is 1 byte, and can
represent any single character, including a letter, a
digit, a punctuation mark, or a space. The second text
data type is string.
Character
data type may store a
sequence of characters, including this sentence, or
paragraph, or page.
String.
are location in your computer’s memory in
which you can store a value and from which you can later
retrieve that value.
Variables
is a quantity or value that does not
change.
Constant
is a symbol that is used to perform
mathematical or logical manipulations. C++ language is
rich with built-in operators.
C++ operator
C++ OPERATORS
Arithmetic Operators Relational Operators Assignment Operators Increment And Decrement Operators Bitwise Operators Logical Operators
+
Addition
-
Subtraction
*
Multiplication
/
Division
%
Modulus
ARITHMETIC OPERATORS
==
Is equal to
!=
Is not equal to
>
Greater than
<
Less than
> =
Greater than or equal to
<=
Less than or equal to
RELATIONAL OPERATORS
++
Increment
–
Decrement
Increment and Decrement
OPERATORS
&&
And operator. Performs a logical conjunction of two
expressions.
(if both expressions evaluate to True, result is True. If either
expression evaluates to False, result is False)
||
Or operator. Performs a logical disjunction on two
expressions.
(if either or both expressions evaluate to True, result is
True)
!
Not operator. Performs logical negation on an expression.
LOGICAL OPERATORS