SlideShare a Scribd company logo
1 of 85
MTS 3013
PENGATURCARAAN
BERSTRUKTUR
BASIC PROGRAMMING
Parts of a C++ Program
// sample C++ program
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, there!";
return 0;
}
comment
preprocessor
directive
which namespace
to use
beginning of
function named main
beginning of
block for main
output
statement
string
literal
send 0 to
operating system
end of block
for main
Special Characters
Character Name Meaning
// Double slash Beginning of a comment
# Pound sign Beginning of preprocessor
directive
< > Open/close brackets Enclose filename in #include
( ) Open/close
parentheses
Used when naming a
function
{ } Open/close brace Encloses a group of
statements
" " Open/close
quotation marks
Encloses string of
characters
; Semicolon End of a programming
statement
The cout Object
 Displays output on the computer screen
 You use the stream insertion operator << to
send output to cout:
cout << "Programming is fun!";
The cout Object
 Can be used to send more than one item to
cout:
cout << "Hello " << "there!";
Or:
cout << "Hello ";
cout << "there!";
The cout Object
 This produces one line of output:
cout << "Programming is ";
cout << "fun!";
The endl Manipulator
 You can use the endl manipulator to start a
new line of output. This will produce two
lines of output:
cout << "Programming is" << endl;
cout << "fun!";
The endl Manipulator
Programming is
fun!
cout << "Programming is" << endl;
cout << "fun!";
The n Escape Sequence
 You can also use the n escape sequence
to start a new line of output. This will
produce two lines of output:
cout << "Programming isn";
cout << "fun!";
Notice that the n is INSIDE
the string.
The n Escape Sequence
Programming is
fun!
cout << "Programming isn";
cout << "fun!";
The #include Directive
 Inserts the contents of another file into the
program
 This is a preprocessor directive, not part of
C++ language
 #include lines not seen by compiler
 Do not place a semicolon at end of
#include line
Variables and Literals
 Variable: a storage location in memory
 Has a name and a type of data it can hold
 Must be defined before it can be used:
int item;
Variable Definition
Identifiers
 An identifier is a programmer-defined name
for some part of a program: variables,
functions, etc.
C++ Key Words
You cannot use any of the C++ key words as an
identifier. These words have reserved meaning.
Variable Names
 A variable name should represent the
purpose of the variable. For example:
itemsOrdered
The purpose of this variable is to hold the
number of items ordered.
Identifier Rules
 The first character of an identifier must be
an alphabetic character or and underscore (
_ ),
 After the first character you may use
alphabetic characters, numbers, or
underscore characters.
 Upper- and lowercase characters are
distinct
Valid and Invalid Identifiers
IDENTIFIER VALID? REASON IF INVALID
totalSales Yes
total_Sales Yes
total.Sales No Cannot contain .
4thQtrSales No Cannot begin with digit
totalSale$ No Cannot contain $
Integer Data Types
 Integer variables can hold whole numbers such as
12, 7, and -99.
Defining Variables
 Variables of the same type can be defined
- On separate lines:
int length;
int width;
unsigned int area;
- On the same line:
int length, width;
unsigned int area;
 Variables of different types must be in different
definitions
This program has three variables:
checking, miles, and days
Integer Literals
 An integer literal is an integer value that is
typed into a program’s code. For example:
itemsOrdered = 15;
In this code, 15 is an integer literal.
Integer Literals
Integer Literals
 Integer literals are stored in memory as ints by
default
 To store an integer constant in a long memory
location, put ‘L’ at the end of the number: 1234L
 Constants that begin with ‘0’ (zero) are base 8:
075
 Constants that begin with ‘0x’ are base 16:
0x75A
The char Data Type
 Used to hold characters or very small integer
values
 Usually 1 byte of memory
 Numeric value of character from the
character set is stored in memory:
CODE:
char letter;
letter = 'C';
MEMORY:
letter
67
Character Literals
 Character literals must be enclosed in single
quote marks. Example:
'A'
Character Strings
 A series of characters in consecutive memory
locations:
"Hello"
 Stored with the null terminator, 0, at the
end:
 Comprised of the characters between the "
"
H e l l o 0
Floating-Point Data Types
 The floating-point data types are:
float
double
long double
 They can hold real numbers such as:
12.45 -3.8
 Stored in a form similar to scientific notation
 All floating-point numbers are signed
Floating-Point Data Types
Floating-point Literals
 Can be represented in
 Fixed point (decimal) notation:
31.4159 0.0000625
 E notation:
3.14159E1 6.25e-5
 Are double by default
 Can be forced to be float (3.14159f) or long
double (0.0000625L)
 Represents values that are true or false
 bool variables are stored as small integers
 false is represented by 0, true by 1:
bool allDone = true;
bool finished = false;
The bool Data Type
allDone
1 0
finished
Determining the Size of a Data
Type
The sizeof operator gives the size of any data
type or variable:
double amount;
cout << "A double is stored in "
<< sizeof(double) << "bytesn";
cout << "Variable amount is stored in
"
<< sizeof(amount)
<< "bytesn";
Variable Assignments and
Initialization
 An assignment statement uses the = operator
to store a value in a variable.
item = 12;
 This statement assigns the value 12 to the
item variable.
Assignment
 The variable receiving the value must appear
on the left side of the = operator.
 This will NOT work:
// ERROR!
12 = item;
Variable Initialization
 To initialize a variable means to assign it a
value when it is defined:
int length = 12;
 Can initialize some or all variables:
int length = 12, width = 5, area;
Scope
 The scope of a variable: the part of the
program in which the variable can be
accessed
 A variable cannot be used before it is defined
Arithmetic Operators
 Used for performing numeric calculations
 C++ has unary, binary, and ternary operators:
 unary (1 operand) -5
 binary (2 operands) 13 - 7
 ternary (3 operands) exp1 ? exp2 : exp3
Binary Arithmetic Operators
SYMBOL OPERATION EXAMPLE VALUE OF
ans
+ addition ans = 7 + 3; 10
- subtraction ans = 7 - 3; 4
* multiplication ans = 7 * 3; 21
/ division ans = 7 / 3; 2
% modulus ans = 7 % 3; 1
A Closer Look at the / Operator
 / (division) operator performs integer division
if both operands are integers
cout << 13 / 5; // displays 2
cout << 91 / 7; // displays 13
 If either operand is floating point, the result is
floating point
cout << 13 / 5.0; // displays 2.6
cout << 91.0 / 7; // displays 13.0
A Closer Look at the % Operator
 % (modulus) operator computes the remainder
resulting from integer division
cout << 13 % 5; // displays 3
 % requires integers for both operands
cout << 13 % 5.0; // error
Comments
 Used to document parts of the program
 Intended for persons reading the source code
of the program:
 Indicate the purpose of the program
 Describe the use of variables
 Explain complex sections of code
 Are ignored by the compiler
Single-Line Comments
Begin with // through to the end of line:
int length = 12; // length in inches
int width = 15; // width in inches
int area; // calculated area
// calculate rectangle area
area = length * width;
Multi-Line Comments
 Begin with /*, end with */
 Can span multiple lines:
/* this is a multi-line
comment
*/
 Can begin and end on the same line:
int area; /* calculated area */
Programming Style
 The visual organization of the source code
 Includes the use of spaces, tabs, and blank
lines
 Does not affect the syntax of the program
 Affects the readability of the source code
Programming Style
Common elements to improve readability:
 Braces { } aligned vertically
 Indentation of statements within a set of
braces
 Blank lines between declaration and other
statements
 Long statements wrapped over multiple
lines with aligned operators
Standard and Prestandard C++
Older-style C++ programs:
 Use .h at end of header files:
 #include <iostream.h>
 Do not use using namespace convention
 May not compile with a standard C++ compiler
The cin Object
 Standard input object
 Like cout, requires iostream file
 Used to read input from keyboard
 Information retrieved from cin with >>
 Input is stored in one or more variables
The cin Object
 cin converts data to the type that matches
the variable:
int height;
cout << "How tall is the room? ";
cin >> height;
Displaying a Prompt
 A prompt is a message that instructs the user
to enter data.
 You should always use cout to display a
prompt before each cin statement.
cout << "How tall is the room? ";
cin >> height;
The cin Object
 Can be used to input more than one value:
cin >> height >> width;
 Multiple values from keyboard must be separated
by spaces
 Order is important: first value entered goes to first
variable, etc.
Reading Strings with cin
 Can be used to read in a string
 Must first declare an array to hold characters in
string:
char myName[21];
 nyName is name of array, 21 is the number of
characters that can be stored (the size of the
array), including the NULL character at the end
 Can be used with cin to assign a value:
cin >> myName;
Mathematical Expressions
 Can create complex expressions using
multiple mathematical operators
 An expression can be a literal, a variable, or
a mathematical combination of constants
and variables
 Can be used in assignment, cout, other
statements:
area = 2 * PI * radius;
cout << "border is: " << 2*(l+w);
Order of Operations
In an expression with more than one
operator, evaluate in this order:
- (unary negation), in order, left to right
* / %, in order, left to right
+ -, in order, left to right
In the expression 2 + 2 * 2 – 2
evaluate
first
evaluate
second
evaluate
third
Order of Operations
Associativity of Operators
 - (unary negation) associates right to left
 *, /, %, +, - associate right to left
 parentheses ( ) can be used to override the
order of operations:
2 + 2 * 2 – 2 = 4
(2 + 2) * 2 – 2 = 6
2 + 2 * (2 – 2) = 2
(2 + 2) * (2 – 2) = 0
Grouping with Parentheses
Algebraic Expressions
 Multiplication requires an operator:
Area=lw is written as Area = l * w;
 There is no exponentiation operator:
Area=s2
is written as Area = pow(s, 2);
 Parentheses may be needed to maintain order
of operations:
is written as
m = (y2-y1) /(x2-x1);
12
12
xx
yy
m
−
−
=
Algebraic Expressions
Type Casting
 Used for manual data type conversion
 Useful for floating point division using ints:
double m;
m = static_cast<double>(y2-y1)
/(x2-x1);
 Useful to see int value of a char variable:
char ch = 'C';
cout << ch << " is "
<< static_cast<int>(ch);
C-Style and Prestandard Type
Cast Expressions
 C-Style cast: data type name in ()
cout << ch << " is " << (int)ch;
 Prestandard C++ cast: value in ()
cout << ch << " is " << int(ch);
 Both are still supported in C++, although
static_cast is preferred
Named Constants
 Named constant (constant variable): variable
whose content cannot be changed during
program execution
 Used for representing constant values with
descriptive names:
const double TAX_RATE = 0.0675;
const int NUM_STATES = 50;
 Often named in uppercase letters
Constants and Array Sizes
 It is a common practice to use a named
constant to indicate the size of an array:
const int SIZE = 21;
char name[SIZE];
const vs. #define
 #define – C-style of naming constants:
#define NUM_STATES 50
 Note no ; at end
 Interpreted by pre-processor rather than
compiler
 Does not occupy memory location like
const
Multiple Assignment and
Combined Assignment
 The = can be used to assign a value to
multiple variables:
x = y = z = 5;
 Value of = is the value that is assigned
 Associates right to left:
x = (y = (z = 5));
value
is 5
value
is 5
value
is 5
Combined Assignment
 Look at the following statement:
sum = sum + 1;
This adds 1 to the variable sum.
Combined Assignment
 The combined assignment operators
provide a shorthand for these types of
statements.
 The statement
sum = sum + 1;
is equivalent to
sum += 1;
Combined Assignment
Operators
More Mathematical Library
Functions
 Require cmath header file
 Take double as input, return a double
 Commonly used functions:
sin Sine
cos Cosine
tan Tangent
sqrt Square root
log Natural (e) log
abs Absolute value (takes and returns
an int)
More Mathematical Library
Functions
 These require cstdlib header file
 rand(): returns a random number (int)
between 0 and the largest int the compute
holds. Yields same sequence of numbers
each time program is run.
 srand(x): initializes random number
generator with unsigned int x
Formatting Output
 Can control how output displays for numeric,
string data:
 size
 position
 number of digits
 Requires iomanip header file
Stream Manipulators
 Used to control how an output field is
displayed
 Some affect just the next value displayed:
 setw(x): print in a field at least x spaces wide.
Use more spaces if field is not wide enough
Stream Manipulators

More Related Content

What's hot

Fundamentals of c programming
Fundamentals of c programmingFundamentals of c programming
Fundamentals of c programmingChitrank Dixit
 
Diploma ii cfpc u-2 datatypes and variables in c language
Diploma ii  cfpc u-2 datatypes and variables in c languageDiploma ii  cfpc u-2 datatypes and variables in c language
Diploma ii cfpc u-2 datatypes and variables in c languageRai University
 
datatypes and variables in c language
 datatypes and variables in c language datatypes and variables in c language
datatypes and variables in c languageRai University
 
Moving Average Filter in C
Moving Average Filter in CMoving Average Filter in C
Moving Average Filter in CColin
 
02a fundamental c++ types, arithmetic
02a   fundamental c++ types, arithmetic 02a   fundamental c++ types, arithmetic
02a fundamental c++ types, arithmetic Manzoor ALam
 
Basics of C programming
Basics of C programmingBasics of C programming
Basics of C programmingavikdhupar
 
Getting started with c++
Getting started with c++Getting started with c++
Getting started with c++K Durga Prasad
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAAiman Hud
 
Overview of C Mrs Sowmya Jyothi
Overview of C Mrs Sowmya JyothiOverview of C Mrs Sowmya Jyothi
Overview of C Mrs Sowmya JyothiSowmya Jyothi
 
Strings in c mrs.sowmya jyothi
Strings in c mrs.sowmya jyothiStrings in c mrs.sowmya jyothi
Strings in c mrs.sowmya jyothiSowmya Jyothi
 
Constants in C Programming
Constants in C ProgrammingConstants in C Programming
Constants in C Programmingprogramming9
 

What's hot (20)

Fundamentals of c programming
Fundamentals of c programmingFundamentals of c programming
Fundamentals of c programming
 
Variables and data types IN SWIFT
 Variables and data types IN SWIFT Variables and data types IN SWIFT
Variables and data types IN SWIFT
 
Diploma ii cfpc u-2 datatypes and variables in c language
Diploma ii  cfpc u-2 datatypes and variables in c languageDiploma ii  cfpc u-2 datatypes and variables in c language
Diploma ii cfpc u-2 datatypes and variables in c language
 
Declaration of variables
Declaration of variablesDeclaration of variables
Declaration of variables
 
datatypes and variables in c language
 datatypes and variables in c language datatypes and variables in c language
datatypes and variables in c language
 
Moving Average Filter in C
Moving Average Filter in CMoving Average Filter in C
Moving Average Filter in C
 
02a fundamental c++ types, arithmetic
02a   fundamental c++ types, arithmetic 02a   fundamental c++ types, arithmetic
02a fundamental c++ types, arithmetic
 
Getting Started with C++
Getting Started with C++Getting Started with C++
Getting Started with C++
 
What is c
What is cWhat is c
What is c
 
Data type in c
Data type in cData type in c
Data type in c
 
C Programming Unit-2
C Programming Unit-2C Programming Unit-2
C Programming Unit-2
 
Basics of C programming
Basics of C programmingBasics of C programming
Basics of C programming
 
Getting started with c++
Getting started with c++Getting started with c++
Getting started with c++
 
Getting started with C++
Getting started with C++Getting started with C++
Getting started with C++
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
 
Overview of C Mrs Sowmya Jyothi
Overview of C Mrs Sowmya JyothiOverview of C Mrs Sowmya Jyothi
Overview of C Mrs Sowmya Jyothi
 
Strings in c mrs.sowmya jyothi
Strings in c mrs.sowmya jyothiStrings in c mrs.sowmya jyothi
Strings in c mrs.sowmya jyothi
 
C introduction
C introductionC introduction
C introduction
 
Constants in C Programming
Constants in C ProgrammingConstants in C Programming
Constants in C Programming
 
Intro to C++ - language
Intro to C++ - languageIntro to C++ - language
Intro to C++ - language
 

Viewers also liked

4.0 projek pengaturcaraan
4.0 projek pengaturcaraan4.0 projek pengaturcaraan
4.0 projek pengaturcaraanSakinah Hassan
 
C programming tutorial
C programming tutorialC programming tutorial
C programming tutorialMohit Saini
 
Pengaturcaraan C
Pengaturcaraan CPengaturcaraan C
Pengaturcaraan Ccyberns_
 
Cara kerja input/proses/output, flowchart, pseudo
Cara kerja input/proses/output, flowchart, pseudoCara kerja input/proses/output, flowchart, pseudo
Cara kerja input/proses/output, flowchart, pseudoFarid Diah
 
Assignments 150507052746-lva1-app6891
Assignments 150507052746-lva1-app6891Assignments 150507052746-lva1-app6891
Assignments 150507052746-lva1-app6891Mohit Saini
 
Report on GPU complex type usage
Report on GPU complex type usageReport on GPU complex type usage
Report on GPU complex type usageCaner Candan
 
Introduction to C Programming
Introduction to C ProgrammingIntroduction to C Programming
Introduction to C ProgrammingMOHAMAD NOH AHMAD
 
Introduction to the c programming language (amazing and easy book for beginners)
Introduction to the c programming language (amazing and easy book for beginners)Introduction to the c programming language (amazing and easy book for beginners)
Introduction to the c programming language (amazing and easy book for beginners)mujeeb memon
 
Exception Handling in C++
Exception Handling in C++Exception Handling in C++
Exception Handling in C++Deepak Tathe
 
1.0 memahami pengaturcaraan
1.0 memahami pengaturcaraan1.0 memahami pengaturcaraan
1.0 memahami pengaturcaraanBotol Budu
 
Pengenalan kepada pengaturcaraan komputer
Pengenalan kepada pengaturcaraan komputerPengenalan kepada pengaturcaraan komputer
Pengenalan kepada pengaturcaraan komputerctlady92
 
Exception handling in c++ by manoj vasava
Exception handling in c++ by manoj vasavaException handling in c++ by manoj vasava
Exception handling in c++ by manoj vasavaManoj_vasava
 
5.1 konsep asas pengaturcaraan
5.1 konsep asas pengaturcaraan5.1 konsep asas pengaturcaraan
5.1 konsep asas pengaturcaraandean36
 
Principles and advantages of oop ppt
Principles and advantages of oop pptPrinciples and advantages of oop ppt
Principles and advantages of oop pptdaxesh chauhan
 

Viewers also liked (20)

4.0 projek pengaturcaraan
4.0 projek pengaturcaraan4.0 projek pengaturcaraan
4.0 projek pengaturcaraan
 
C programming tutorial
C programming tutorialC programming tutorial
C programming tutorial
 
C Programming Example
C Programming Example C Programming Example
C Programming Example
 
Pengaturcaraan C
Pengaturcaraan CPengaturcaraan C
Pengaturcaraan C
 
Cara kerja input/proses/output, flowchart, pseudo
Cara kerja input/proses/output, flowchart, pseudoCara kerja input/proses/output, flowchart, pseudo
Cara kerja input/proses/output, flowchart, pseudo
 
Assignments 150507052746-lva1-app6891
Assignments 150507052746-lva1-app6891Assignments 150507052746-lva1-app6891
Assignments 150507052746-lva1-app6891
 
openFrameworks
openFrameworksopenFrameworks
openFrameworks
 
Report on GPU complex type usage
Report on GPU complex type usageReport on GPU complex type usage
Report on GPU complex type usage
 
Introduction to C Programming
Introduction to C ProgrammingIntroduction to C Programming
Introduction to C Programming
 
Introduction to the c programming language (amazing and easy book for beginners)
Introduction to the c programming language (amazing and easy book for beginners)Introduction to the c programming language (amazing and easy book for beginners)
Introduction to the c programming language (amazing and easy book for beginners)
 
1.0 pengaturcaraan
1.0 pengaturcaraan1.0 pengaturcaraan
1.0 pengaturcaraan
 
Introduction à C++
Introduction à C++Introduction à C++
Introduction à C++
 
Chap1
Chap1Chap1
Chap1
 
Exception Handling in C++
Exception Handling in C++Exception Handling in C++
Exception Handling in C++
 
1.0 memahami pengaturcaraan
1.0 memahami pengaturcaraan1.0 memahami pengaturcaraan
1.0 memahami pengaturcaraan
 
Pengenalan kepada pengaturcaraan komputer
Pengenalan kepada pengaturcaraan komputerPengenalan kepada pengaturcaraan komputer
Pengenalan kepada pengaturcaraan komputer
 
Exception handling in c++ by manoj vasava
Exception handling in c++ by manoj vasavaException handling in c++ by manoj vasava
Exception handling in c++ by manoj vasava
 
Pengaturcaraan c
Pengaturcaraan cPengaturcaraan c
Pengaturcaraan c
 
5.1 konsep asas pengaturcaraan
5.1 konsep asas pengaturcaraan5.1 konsep asas pengaturcaraan
5.1 konsep asas pengaturcaraan
 
Principles and advantages of oop ppt
Principles and advantages of oop pptPrinciples and advantages of oop ppt
Principles and advantages of oop ppt
 

Similar to MTS 3013 PENGATURCARAAN BERSTRUKTUR BASIC PROGRAMMING

C++ Tutorial.docx
C++ Tutorial.docxC++ Tutorial.docx
C++ Tutorial.docxPinkiVats1
 
Unit 4 Foc
Unit 4 FocUnit 4 Foc
Unit 4 FocJAYA
 
C++ Basics introduction to typecasting Webinar Slides 1
C++ Basics introduction to typecasting Webinar Slides 1C++ Basics introduction to typecasting Webinar Slides 1
C++ Basics introduction to typecasting Webinar Slides 1Ali Raza Jilani
 
Variables and calculations_chpt_4
Variables and calculations_chpt_4Variables and calculations_chpt_4
Variables and calculations_chpt_4cmontanez
 
Beginner C++ easy slide and simple definition with questions
Beginner C++ easy slide and simple definition with questions Beginner C++ easy slide and simple definition with questions
Beginner C++ easy slide and simple definition with questions khawajasharif
 
Mca i pic u-2 datatypes and variables in c language
Mca i pic u-2 datatypes and variables in c languageMca i pic u-2 datatypes and variables in c language
Mca i pic u-2 datatypes and variables in c languageRai University
 
Btech i pic u-2 datatypes and variables in c language
Btech i pic u-2 datatypes and variables in c languageBtech i pic u-2 datatypes and variables in c language
Btech i pic u-2 datatypes and variables in c languageRai University
 
C intro
C introC intro
C introKamran
 
C programming Training in Ambala ! Batra Computer Centre
C programming Training in Ambala ! Batra Computer CentreC programming Training in Ambala ! Batra Computer Centre
C programming Training in Ambala ! Batra Computer Centrejatin batra
 
Bsc cs i pic u-2 datatypes and variables in c language
Bsc cs i pic u-2 datatypes and variables in c languageBsc cs i pic u-2 datatypes and variables in c language
Bsc cs i pic u-2 datatypes and variables in c languageRai University
 

Similar to MTS 3013 PENGATURCARAAN BERSTRUKTUR BASIC PROGRAMMING (20)

C++ Tutorial.docx
C++ Tutorial.docxC++ Tutorial.docx
C++ Tutorial.docx
 
Chapter1.pptx
Chapter1.pptxChapter1.pptx
Chapter1.pptx
 
Unit 4 Foc
Unit 4 FocUnit 4 Foc
Unit 4 Foc
 
Ch02
Ch02Ch02
Ch02
 
CProgrammingTutorial
CProgrammingTutorialCProgrammingTutorial
CProgrammingTutorial
 
C++ Basics introduction to typecasting Webinar Slides 1
C++ Basics introduction to typecasting Webinar Slides 1C++ Basics introduction to typecasting Webinar Slides 1
C++ Basics introduction to typecasting Webinar Slides 1
 
fds unit1.docx
fds unit1.docxfds unit1.docx
fds unit1.docx
 
C++ lecture 01
C++   lecture 01C++   lecture 01
C++ lecture 01
 
Chapter2
Chapter2Chapter2
Chapter2
 
Variables and calculations_chpt_4
Variables and calculations_chpt_4Variables and calculations_chpt_4
Variables and calculations_chpt_4
 
Beginner C++ easy slide and simple definition with questions
Beginner C++ easy slide and simple definition with questions Beginner C++ easy slide and simple definition with questions
Beginner C++ easy slide and simple definition with questions
 
Mca i pic u-2 datatypes and variables in c language
Mca i pic u-2 datatypes and variables in c languageMca i pic u-2 datatypes and variables in c language
Mca i pic u-2 datatypes and variables in c language
 
C Programming Unit-1
C Programming Unit-1C Programming Unit-1
C Programming Unit-1
 
Btech i pic u-2 datatypes and variables in c language
Btech i pic u-2 datatypes and variables in c languageBtech i pic u-2 datatypes and variables in c language
Btech i pic u-2 datatypes and variables in c language
 
C intro
C introC intro
C intro
 
Module 1 PCD.docx
Module 1 PCD.docxModule 1 PCD.docx
Module 1 PCD.docx
 
C programming Training in Ambala ! Batra Computer Centre
C programming Training in Ambala ! Batra Computer CentreC programming Training in Ambala ! Batra Computer Centre
C programming Training in Ambala ! Batra Computer Centre
 
Getting started with c++
Getting started with c++Getting started with c++
Getting started with c++
 
Bsc cs i pic u-2 datatypes and variables in c language
Bsc cs i pic u-2 datatypes and variables in c languageBsc cs i pic u-2 datatypes and variables in c language
Bsc cs i pic u-2 datatypes and variables in c language
 
Cnotes
CnotesCnotes
Cnotes
 

More from Unit Kediaman Luar Kampus (9)

Fungsi (i)
Fungsi (i)Fungsi (i)
Fungsi (i)
 
Fail
FailFail
Fail
 
Fungsi (ii)
Fungsi (ii)Fungsi (ii)
Fungsi (ii)
 
Basic pengaturcaraan
Basic pengaturcaraanBasic pengaturcaraan
Basic pengaturcaraan
 
Latihan 2
Latihan 2Latihan 2
Latihan 2
 
Looping
LoopingLooping
Looping
 
Penyelesaian masalah
Penyelesaian masalahPenyelesaian masalah
Penyelesaian masalah
 
Pengenalan kepada pengaturcaraan berstruktur
Pengenalan kepada pengaturcaraan berstrukturPengenalan kepada pengaturcaraan berstruktur
Pengenalan kepada pengaturcaraan berstruktur
 
Presentation2
Presentation2Presentation2
Presentation2
 

Recently uploaded

Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 

Recently uploaded (20)

Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 

MTS 3013 PENGATURCARAAN BERSTRUKTUR BASIC PROGRAMMING

  • 2. Parts of a C++ Program // sample C++ program #include <iostream> using namespace std; int main() { cout << "Hello, there!"; return 0; } comment preprocessor directive which namespace to use beginning of function named main beginning of block for main output statement string literal send 0 to operating system end of block for main
  • 3. Special Characters Character Name Meaning // Double slash Beginning of a comment # Pound sign Beginning of preprocessor directive < > Open/close brackets Enclose filename in #include ( ) Open/close parentheses Used when naming a function { } Open/close brace Encloses a group of statements " " Open/close quotation marks Encloses string of characters ; Semicolon End of a programming statement
  • 4. The cout Object  Displays output on the computer screen  You use the stream insertion operator << to send output to cout: cout << "Programming is fun!";
  • 5. The cout Object  Can be used to send more than one item to cout: cout << "Hello " << "there!"; Or: cout << "Hello "; cout << "there!";
  • 6. The cout Object  This produces one line of output: cout << "Programming is "; cout << "fun!";
  • 7. The endl Manipulator  You can use the endl manipulator to start a new line of output. This will produce two lines of output: cout << "Programming is" << endl; cout << "fun!";
  • 8. The endl Manipulator Programming is fun! cout << "Programming is" << endl; cout << "fun!";
  • 9. The n Escape Sequence  You can also use the n escape sequence to start a new line of output. This will produce two lines of output: cout << "Programming isn"; cout << "fun!"; Notice that the n is INSIDE the string.
  • 10. The n Escape Sequence Programming is fun! cout << "Programming isn"; cout << "fun!";
  • 11. The #include Directive  Inserts the contents of another file into the program  This is a preprocessor directive, not part of C++ language  #include lines not seen by compiler  Do not place a semicolon at end of #include line
  • 12. Variables and Literals  Variable: a storage location in memory  Has a name and a type of data it can hold  Must be defined before it can be used: int item;
  • 14. Identifiers  An identifier is a programmer-defined name for some part of a program: variables, functions, etc.
  • 15. C++ Key Words You cannot use any of the C++ key words as an identifier. These words have reserved meaning.
  • 16. Variable Names  A variable name should represent the purpose of the variable. For example: itemsOrdered The purpose of this variable is to hold the number of items ordered.
  • 17. Identifier Rules  The first character of an identifier must be an alphabetic character or and underscore ( _ ),  After the first character you may use alphabetic characters, numbers, or underscore characters.  Upper- and lowercase characters are distinct
  • 18. Valid and Invalid Identifiers IDENTIFIER VALID? REASON IF INVALID totalSales Yes total_Sales Yes total.Sales No Cannot contain . 4thQtrSales No Cannot begin with digit totalSale$ No Cannot contain $
  • 19. Integer Data Types  Integer variables can hold whole numbers such as 12, 7, and -99.
  • 20. Defining Variables  Variables of the same type can be defined - On separate lines: int length; int width; unsigned int area; - On the same line: int length, width; unsigned int area;  Variables of different types must be in different definitions
  • 21. This program has three variables: checking, miles, and days
  • 22. Integer Literals  An integer literal is an integer value that is typed into a program’s code. For example: itemsOrdered = 15; In this code, 15 is an integer literal.
  • 24. Integer Literals  Integer literals are stored in memory as ints by default  To store an integer constant in a long memory location, put ‘L’ at the end of the number: 1234L  Constants that begin with ‘0’ (zero) are base 8: 075  Constants that begin with ‘0x’ are base 16: 0x75A
  • 25. The char Data Type  Used to hold characters or very small integer values  Usually 1 byte of memory  Numeric value of character from the character set is stored in memory: CODE: char letter; letter = 'C'; MEMORY: letter 67
  • 26. Character Literals  Character literals must be enclosed in single quote marks. Example: 'A'
  • 27.
  • 28. Character Strings  A series of characters in consecutive memory locations: "Hello"  Stored with the null terminator, 0, at the end:  Comprised of the characters between the " " H e l l o 0
  • 29. Floating-Point Data Types  The floating-point data types are: float double long double  They can hold real numbers such as: 12.45 -3.8  Stored in a form similar to scientific notation  All floating-point numbers are signed
  • 31. Floating-point Literals  Can be represented in  Fixed point (decimal) notation: 31.4159 0.0000625  E notation: 3.14159E1 6.25e-5  Are double by default  Can be forced to be float (3.14159f) or long double (0.0000625L)
  • 32.
  • 33.  Represents values that are true or false  bool variables are stored as small integers  false is represented by 0, true by 1: bool allDone = true; bool finished = false; The bool Data Type allDone 1 0 finished
  • 34.
  • 35. Determining the Size of a Data Type The sizeof operator gives the size of any data type or variable: double amount; cout << "A double is stored in " << sizeof(double) << "bytesn"; cout << "Variable amount is stored in " << sizeof(amount) << "bytesn";
  • 36. Variable Assignments and Initialization  An assignment statement uses the = operator to store a value in a variable. item = 12;  This statement assigns the value 12 to the item variable.
  • 37. Assignment  The variable receiving the value must appear on the left side of the = operator.  This will NOT work: // ERROR! 12 = item;
  • 38. Variable Initialization  To initialize a variable means to assign it a value when it is defined: int length = 12;  Can initialize some or all variables: int length = 12, width = 5, area;
  • 39.
  • 40. Scope  The scope of a variable: the part of the program in which the variable can be accessed  A variable cannot be used before it is defined
  • 41.
  • 42. Arithmetic Operators  Used for performing numeric calculations  C++ has unary, binary, and ternary operators:  unary (1 operand) -5  binary (2 operands) 13 - 7  ternary (3 operands) exp1 ? exp2 : exp3
  • 43. Binary Arithmetic Operators SYMBOL OPERATION EXAMPLE VALUE OF ans + addition ans = 7 + 3; 10 - subtraction ans = 7 - 3; 4 * multiplication ans = 7 * 3; 21 / division ans = 7 / 3; 2 % modulus ans = 7 % 3; 1
  • 44.
  • 45. A Closer Look at the / Operator  / (division) operator performs integer division if both operands are integers cout << 13 / 5; // displays 2 cout << 91 / 7; // displays 13  If either operand is floating point, the result is floating point cout << 13 / 5.0; // displays 2.6 cout << 91.0 / 7; // displays 13.0
  • 46. A Closer Look at the % Operator  % (modulus) operator computes the remainder resulting from integer division cout << 13 % 5; // displays 3  % requires integers for both operands cout << 13 % 5.0; // error
  • 47. Comments  Used to document parts of the program  Intended for persons reading the source code of the program:  Indicate the purpose of the program  Describe the use of variables  Explain complex sections of code  Are ignored by the compiler
  • 48. Single-Line Comments Begin with // through to the end of line: int length = 12; // length in inches int width = 15; // width in inches int area; // calculated area // calculate rectangle area area = length * width;
  • 49. Multi-Line Comments  Begin with /*, end with */  Can span multiple lines: /* this is a multi-line comment */  Can begin and end on the same line: int area; /* calculated area */
  • 50. Programming Style  The visual organization of the source code  Includes the use of spaces, tabs, and blank lines  Does not affect the syntax of the program  Affects the readability of the source code
  • 51. Programming Style Common elements to improve readability:  Braces { } aligned vertically  Indentation of statements within a set of braces  Blank lines between declaration and other statements  Long statements wrapped over multiple lines with aligned operators
  • 52. Standard and Prestandard C++ Older-style C++ programs:  Use .h at end of header files:  #include <iostream.h>  Do not use using namespace convention  May not compile with a standard C++ compiler
  • 53. The cin Object  Standard input object  Like cout, requires iostream file  Used to read input from keyboard  Information retrieved from cin with >>  Input is stored in one or more variables
  • 54.
  • 55. The cin Object  cin converts data to the type that matches the variable: int height; cout << "How tall is the room? "; cin >> height;
  • 56. Displaying a Prompt  A prompt is a message that instructs the user to enter data.  You should always use cout to display a prompt before each cin statement. cout << "How tall is the room? "; cin >> height;
  • 57. The cin Object  Can be used to input more than one value: cin >> height >> width;  Multiple values from keyboard must be separated by spaces  Order is important: first value entered goes to first variable, etc.
  • 58.
  • 59. Reading Strings with cin  Can be used to read in a string  Must first declare an array to hold characters in string: char myName[21];  nyName is name of array, 21 is the number of characters that can be stored (the size of the array), including the NULL character at the end  Can be used with cin to assign a value: cin >> myName;
  • 60.
  • 61. Mathematical Expressions  Can create complex expressions using multiple mathematical operators  An expression can be a literal, a variable, or a mathematical combination of constants and variables  Can be used in assignment, cout, other statements: area = 2 * PI * radius; cout << "border is: " << 2*(l+w);
  • 62. Order of Operations In an expression with more than one operator, evaluate in this order: - (unary negation), in order, left to right * / %, in order, left to right + -, in order, left to right In the expression 2 + 2 * 2 – 2 evaluate first evaluate second evaluate third
  • 64. Associativity of Operators  - (unary negation) associates right to left  *, /, %, +, - associate right to left  parentheses ( ) can be used to override the order of operations: 2 + 2 * 2 – 2 = 4 (2 + 2) * 2 – 2 = 6 2 + 2 * (2 – 2) = 2 (2 + 2) * (2 – 2) = 0
  • 66. Algebraic Expressions  Multiplication requires an operator: Area=lw is written as Area = l * w;  There is no exponentiation operator: Area=s2 is written as Area = pow(s, 2);  Parentheses may be needed to maintain order of operations: is written as m = (y2-y1) /(x2-x1); 12 12 xx yy m − − =
  • 68. Type Casting  Used for manual data type conversion  Useful for floating point division using ints: double m; m = static_cast<double>(y2-y1) /(x2-x1);  Useful to see int value of a char variable: char ch = 'C'; cout << ch << " is " << static_cast<int>(ch);
  • 69.
  • 70. C-Style and Prestandard Type Cast Expressions  C-Style cast: data type name in () cout << ch << " is " << (int)ch;  Prestandard C++ cast: value in () cout << ch << " is " << int(ch);  Both are still supported in C++, although static_cast is preferred
  • 71. Named Constants  Named constant (constant variable): variable whose content cannot be changed during program execution  Used for representing constant values with descriptive names: const double TAX_RATE = 0.0675; const int NUM_STATES = 50;  Often named in uppercase letters
  • 72.
  • 73. Constants and Array Sizes  It is a common practice to use a named constant to indicate the size of an array: const int SIZE = 21; char name[SIZE];
  • 74. const vs. #define  #define – C-style of naming constants: #define NUM_STATES 50  Note no ; at end  Interpreted by pre-processor rather than compiler  Does not occupy memory location like const
  • 75. Multiple Assignment and Combined Assignment  The = can be used to assign a value to multiple variables: x = y = z = 5;  Value of = is the value that is assigned  Associates right to left: x = (y = (z = 5)); value is 5 value is 5 value is 5
  • 76. Combined Assignment  Look at the following statement: sum = sum + 1; This adds 1 to the variable sum.
  • 77. Combined Assignment  The combined assignment operators provide a shorthand for these types of statements.  The statement sum = sum + 1; is equivalent to sum += 1;
  • 79. More Mathematical Library Functions  Require cmath header file  Take double as input, return a double  Commonly used functions: sin Sine cos Cosine tan Tangent sqrt Square root log Natural (e) log abs Absolute value (takes and returns an int)
  • 80. More Mathematical Library Functions  These require cstdlib header file  rand(): returns a random number (int) between 0 and the largest int the compute holds. Yields same sequence of numbers each time program is run.  srand(x): initializes random number generator with unsigned int x
  • 81. Formatting Output  Can control how output displays for numeric, string data:  size  position  number of digits  Requires iomanip header file
  • 82. Stream Manipulators  Used to control how an output field is displayed  Some affect just the next value displayed:  setw(x): print in a field at least x spaces wide. Use more spaces if field is not wide enough
  • 83.
  • 84.