SlideShare a Scribd company logo
DTI2143 Computer Programming1Chapter 3Expression&Operators
Aim2To give understanding on:Expression and operator concept
math.h and stdlib.h built-in functionObjectiveStudents should be able to:understand concepts and fundamentals in expression/  operator.write expression in C programming language3Introduction to ExpressionGiven the following statement :2x + 3 – z = yexpression
4Introduction to ExpressionProcess involves in money withdrawal scenariobalance – withdrawed money = current balanceExpression in C :bakiTerkini =wangKeluar – bakiSemasa;
What is Expression?5Introduction to ExpressionCombination or more than one variable or Constant (operand) which separated by operatorExpressionOperatorexamplex + 3  -   zOperandConsists ofarithmeticrelationallogical
6Arithmetic ExpressionKnown asArithmetic ExpressionMathematic ExpressionusingArithmetic OperatorRepresents byRepresents byUnary operatorBinary operator
Unary Operator7Arithmetic ExpressionUnary OperatorOperates for one operandComputer memory cellexample-20a  = -20;ab  = +15;b+15
Unary Operator8Arithmetic ExpressionExample 1:int  A = 5;++A; printf(“%d”, A);                     output ?A--;printf(“%d”,A);                      output ?A++;printf(“%d”,A);                      output ?
Unary Operator9Arithmetic ExpressionExample 2:int  A ;A=6;printf(“%d”,3 + --A);       output ?printf(“%d”, A);               output ?A=6;printf(“%d”, 3 + A--);       output ?printf(“%d”, A);                output ?
Unary Operator10Arithmetic ExpressionExample 3:Given the value of  num1 = 8 .Determine the value of num2 after the execution for each of the following statements: num2 = num1++ - 2;num2 = num1;num2 = ++num1 – 3;num2 = num1-- +1;
11
Binary Operator12Arithmetic ExpressionLocated between constants or variables or both combinationBinary OperatorexampleA+    zoperatoroperand
Binary Operator13Arithmetic ExpressionMultiplicationUse symbol  “ * ”exampleA  *    zoperatoroperandMathematicArithmetic Expression2x + y2 * x + y
Binary Operator14Arithmetic ExpressionDivideUse symbol  “/”exampleA   /    zoperatoroperandMathematicArithmetic Expression2 :  y2 / y
Binary Operator15Arithmetic ExpressionModulusUse symbol  “%”exampleA   %    zoperatoroperandReturn a balance when 2 numbers is dividedCan only be used with an integer variable
Binary Operator16Arithmetic ExpressionExample:int  A, B; float C; A= 2; B= 5; C= 2.4; B% A; C % A;Valid!   Answer is 1Invalid! C is float
Assignment Statement17Arithmetic ExpressionUsed to store value/result of process to a variable
Use operator symbol  =Assignment statementDouble assignmentstatementCompound assignmentstatement
Assignment Statement18Arithmetic ExpressionFormat /sintax :variable = value;	variable = constant; or variable = variable;	variable = expression;Example :1.average= ( 6 + 5) * 4;2.grossSalary = 1500;nettSalary = grossSalary + 200;3.price= 50.00;   pay = price;`44average1500grossSalary1700nettSalary50.00pricepay50.00
19Arithmetic ExpressionCompound Assignment StatementUse more than one operator (=)
Example :int a = b= c = d = e = 250;int b =2, number =0, total = 0,average =3; number = b++ = 10;int age = workHour = 0;
20Arithmetic ExpressionCompound Assignment StatementFunctionTo combine two different operator together.
To simplify arithmetic operator
Original function of operator does not affected
Allowed combination are as follow:operator:+= , -= , *= , /= , %=
Compound Assignment Statement21Arithmetic ExpressionExample :
Arithmetic Operator Precedence Rules22Arithmetic ExpressionCompiler will follows the following precedence to execute the arithmetic expression based on priority.
Arithmetic Operator Precedence Rules23Arithmetic OperatorExample:5 + 2 * 6 – 4 / 25  +  12  - 4 / 2       5  + 12  -    2           17 - 2              152.	3 * 4 / 2 + ( 3 –1)       3 * 4 / 2 +    2         12   / 2 + 2		 6  +  2		     8
Arithmetic Operator Precedence Rules24Arithmetic ExpressionExample:3. Prefix unary arithmetic expressionintkira = 5, nilaipertama = 10;nilai_kedua = 5 * --kira + nilai_pertama;printf(“%d %d”, kira, nilai_kedua);Output:4  30
Arithmetic Operator Precedence Rules25Arithmetic ExpressionExample:3. Prefix unary arithmetic expression    int kira = 5, nilai pertama = 10;    nilai_kedua = 5 * kira-- + nilai_pertama;    printf(“%d %d”, kira, nilai_kedua);Output:4  35
26Arithmetic ExpressionMathematic Library FunctionDiwakiliolehperpustakaanpiawaimatematkiaitumath.h
Dipanggilbersama#include
Antarafungsiperpustakaanmatematik yang penting:27Arithmetic ExpressionMathematic Library FunctionExample:#include<stdio.h>#include <math.h>void main(){   int x = 16, y ;   y = sqrt(x);   printf(“%d”,y);}Output :4
Exercise:28Arithmetic ExpressionConvert the following mathematic expression to a valid arithmetic expression :	a)  b = 3 + bb) x  = (a – b)(a – c2)                    a + 4       c) d = (3e – d) -  ( 4 – 3c3 )     d) r = 2s + 3(s – 9)		       x – 9           4y		                sGiven a= 3, b = 5, c=1.  What is the output of the following expression?	a.  ( 6 * c – 6 / a) -  b                   b.   (5 * c) +( a* b / b)       c.   ++a 			        d.    c  + a * c / (3 * c)
Exercise:29Arithmetic Expression      Assume i,j and k are integer variables with i = 5 and j=3. Determine what is the value for each of the following statement:	a)	k = j++;		d)   k = ++j;			b)	k = i * j--;		e)   k = i * --j;	c)	k = j + i * j++;		f)    k = 27 / j++ - 16 % i;
30Relation ExpressionRelationalexpressionuseRelational operatorCombination of more than one statementvariable vs variableCan consists ofvariable vs constantproduceconstant vs constant0 (if false)1(if true)
Relational Operator31Relation Expression
32Relation ExpressionP/s:a, b and  c are variables,Replace with the given valuesExample 1:int a=6, b =1, c = -2;a+ b == c			2) a !=  b	6 + 1== -2			    6 != 1	7 == -2Answer: 0(False)		    Answer : 1 (True)
33Relation ExpressionExample 2 :int a=6, b =1, c = -2;  3)	b < a			4) b + c <= a	1 < -2			    1 + -2 < 6					    -1 < 6Answer: 0 (False)           Answer : 1 (True)
34Relation ExpressionP/s:Relational operator has less priority than other operators.Start evaluating from left to right.Example 3:int a=10, b = 3, c = 7;(a+b >= 3*c)==( a != 2*c+b)(10+3 >= 3*7)==(a != 2*c+b)(13 >= 21)==(10 != 14+3)(13 >= 21)==(10 != 17)0 == 10 (false)
35Relation ExpressionAn example program which uses relational expression#include <stdio.h>void main(){  int age;printf(“\nPlease enter your age >>”);scanf(“%d”,&age);    if   (age > 21)printf(“\nYou are qualified to vote”);}Relational expression
36Logical ExpressionLogical OperatorLogical expressionuseCombination of one or more expressionsCan consists ofRelational expr. vs logical expr.Relational expr. vs variableproducesRelational expr. vs constant0 (if false)1(if true)
37Logical ExpressionLogical OperatorLogical operator && dan || is used between 2 or morerelational expression
38Logical ExpressionLogical operator truth table for ANDAND (&&)
Ad

More Related Content

What's hot (18)

C Sharp Jn (2)
C Sharp Jn (2)C Sharp Jn (2)
C Sharp Jn (2)
guest58c84c
 
ICP - Lecture 5
ICP - Lecture 5ICP - Lecture 5
ICP - Lecture 5
Hassaan Rahman
 
Few Operator used in c++
Few Operator used in c++Few Operator used in c++
Few Operator used in c++
sunny khan
 
Chapter 5 Balagurusamy Programming ANSI in c
Chapter 5 Balagurusamy Programming ANSI  in cChapter 5 Balagurusamy Programming ANSI  in c
Chapter 5 Balagurusamy Programming ANSI in c
BUBT
 
Chapter 2 : Balagurusamy_ Programming ANsI in C
Chapter 2 :  Balagurusamy_ Programming ANsI in CChapter 2 :  Balagurusamy_ Programming ANsI in C
Chapter 2 : Balagurusamy_ Programming ANsI in C
BUBT
 
Python Basic Operators
Python Basic OperatorsPython Basic Operators
Python Basic Operators
Soba Arjun
 
Mesics lecture 4 c operators and experssions
Mesics lecture  4   c operators and experssionsMesics lecture  4   c operators and experssions
Mesics lecture 4 c operators and experssions
eShikshak
 
Operation and expression in c++
Operation and expression in c++Operation and expression in c++
Operation and expression in c++
Online
 
Chapter 6 Balagurusamy Programming ANSI in c
Chapter 6  Balagurusamy Programming ANSI  in cChapter 6  Balagurusamy Programming ANSI  in c
Chapter 6 Balagurusamy Programming ANSI in c
BUBT
 
FLOW OF CONTROL-NESTED IFS IN PYTHON
FLOW OF CONTROL-NESTED IFS IN PYTHONFLOW OF CONTROL-NESTED IFS IN PYTHON
FLOW OF CONTROL-NESTED IFS IN PYTHON
vikram mahendra
 
Operators and expressions in C++
Operators and expressions in C++Operators and expressions in C++
Operators and expressions in C++
Neeru Mittal
 
Unit 2
Unit 2Unit 2
Unit 2
DURGADEVIP
 
Expressions in c++
 Expressions in c++ Expressions in c++
Expressions in c++
zeeshan turi
 
Project in TLE
Project in TLEProject in TLE
Project in TLE
PGT_13
 
Chapter 5 exercises Balagurusamy Programming ANSI in c
Chapter 5 exercises Balagurusamy Programming ANSI  in cChapter 5 exercises Balagurusamy Programming ANSI  in c
Chapter 5 exercises Balagurusamy Programming ANSI in c
BUBT
 
Chapter 4 : Balagurusamy Programming ANSI in C
Chapter 4 : Balagurusamy Programming ANSI in CChapter 4 : Balagurusamy Programming ANSI in C
Chapter 4 : Balagurusamy Programming ANSI in C
BUBT
 
Report Group 4 Constants and Variables
Report Group 4 Constants and VariablesReport Group 4 Constants and Variables
Report Group 4 Constants and Variables
Genard Briane Ancero
 
Operators and Expressions
Operators and ExpressionsOperators and Expressions
Operators and Expressions
Munazza-Mah-Jabeen
 
Few Operator used in c++
Few Operator used in c++Few Operator used in c++
Few Operator used in c++
sunny khan
 
Chapter 5 Balagurusamy Programming ANSI in c
Chapter 5 Balagurusamy Programming ANSI  in cChapter 5 Balagurusamy Programming ANSI  in c
Chapter 5 Balagurusamy Programming ANSI in c
BUBT
 
Chapter 2 : Balagurusamy_ Programming ANsI in C
Chapter 2 :  Balagurusamy_ Programming ANsI in CChapter 2 :  Balagurusamy_ Programming ANsI in C
Chapter 2 : Balagurusamy_ Programming ANsI in C
BUBT
 
Python Basic Operators
Python Basic OperatorsPython Basic Operators
Python Basic Operators
Soba Arjun
 
Mesics lecture 4 c operators and experssions
Mesics lecture  4   c operators and experssionsMesics lecture  4   c operators and experssions
Mesics lecture 4 c operators and experssions
eShikshak
 
Operation and expression in c++
Operation and expression in c++Operation and expression in c++
Operation and expression in c++
Online
 
Chapter 6 Balagurusamy Programming ANSI in c
Chapter 6  Balagurusamy Programming ANSI  in cChapter 6  Balagurusamy Programming ANSI  in c
Chapter 6 Balagurusamy Programming ANSI in c
BUBT
 
FLOW OF CONTROL-NESTED IFS IN PYTHON
FLOW OF CONTROL-NESTED IFS IN PYTHONFLOW OF CONTROL-NESTED IFS IN PYTHON
FLOW OF CONTROL-NESTED IFS IN PYTHON
vikram mahendra
 
Operators and expressions in C++
Operators and expressions in C++Operators and expressions in C++
Operators and expressions in C++
Neeru Mittal
 
Expressions in c++
 Expressions in c++ Expressions in c++
Expressions in c++
zeeshan turi
 
Project in TLE
Project in TLEProject in TLE
Project in TLE
PGT_13
 
Chapter 5 exercises Balagurusamy Programming ANSI in c
Chapter 5 exercises Balagurusamy Programming ANSI  in cChapter 5 exercises Balagurusamy Programming ANSI  in c
Chapter 5 exercises Balagurusamy Programming ANSI in c
BUBT
 
Chapter 4 : Balagurusamy Programming ANSI in C
Chapter 4 : Balagurusamy Programming ANSI in CChapter 4 : Balagurusamy Programming ANSI in C
Chapter 4 : Balagurusamy Programming ANSI in C
BUBT
 
Report Group 4 Constants and Variables
Report Group 4 Constants and VariablesReport Group 4 Constants and Variables
Report Group 4 Constants and Variables
Genard Briane Ancero
 

Viewers also liked (20)

Problemas resoltos new
Problemas resoltos newProblemas resoltos new
Problemas resoltos new
juanapardo
 
Proceso de cambios vip
Proceso de cambios vipProceso de cambios vip
Proceso de cambios vip
Felix J. Baute S.
 
Components of a computer
Components of a computerComponents of a computer
Components of a computer
TechTeacher803
 
オウンドメディア時代だからこそ! MTクラウド版への期待と不満
オウンドメディア時代だからこそ! MTクラウド版への期待と不満オウンドメディア時代だからこそ! MTクラウド版への期待と不満
オウンドメディア時代だからこそ! MTクラウド版への期待と不満
新一 佐藤
 
愛知中小企業家同友会It研究会
愛知中小企業家同友会It研究会愛知中小企業家同友会It研究会
愛知中小企業家同友会It研究会
新一 佐藤
 
Модель автоматизированной системы мониторинга результативности процесса обуче...
Модель автоматизированной системы мониторинга результативности процесса обуче...Модель автоматизированной системы мониторинга результативности процесса обуче...
Модель автоматизированной системы мониторинга результативности процесса обуче...
Mikhail Bogdanov
 
Teaching people how to treat you
Teaching people how to treat youTeaching people how to treat you
Teaching people how to treat you
Brad Hyde
 
PBL Lesson Plan C
PBL Lesson Plan CPBL Lesson Plan C
PBL Lesson Plan C
Mayci Neal
 
Workplace violence by Brad Hyde
Workplace violence by Brad HydeWorkplace violence by Brad Hyde
Workplace violence by Brad Hyde
Brad Hyde
 
Ance_Mundula_24052011
Ance_Mundula_24052011Ance_Mundula_24052011
Ance_Mundula_24052011
Rèdais
 
Dam31303 dti2143 lab sheet 7
Dam31303 dti2143 lab sheet 7Dam31303 dti2143 lab sheet 7
Dam31303 dti2143 lab sheet 7
alish sha
 
Nha Tran Brand Brief
Nha Tran Brand BriefNha Tran Brand Brief
Nha Tran Brand Brief
Ernest Chan
 
Cuestions xenetica molecular_e_acidos_nucleicos
Cuestions xenetica molecular_e_acidos_nucleicosCuestions xenetica molecular_e_acidos_nucleicos
Cuestions xenetica molecular_e_acidos_nucleicos
juanapardo
 
Preparazione precampionato anno 1977 1978
Preparazione precampionato anno 1977 1978Preparazione precampionato anno 1977 1978
Preparazione precampionato anno 1977 1978
Stefano Merlo
 
Los secretos de las presentaciones de Steve Jobs
Los secretos de las presentaciones de Steve JobsLos secretos de las presentaciones de Steve Jobs
Los secretos de las presentaciones de Steve Jobs
David Aguirre
 
THE POWER PRINCIPLES OF TEAM BUILDING
THE POWER PRINCIPLES OF TEAM BUILDINGTHE POWER PRINCIPLES OF TEAM BUILDING
THE POWER PRINCIPLES OF TEAM BUILDING
John Kennedy Akotia
 
Collection Development a la Carte v.2
Collection Development a la Carte v.2Collection Development a la Carte v.2
Collection Development a la Carte v.2
Mary Wilkes Towner
 
Problemas resoltos new
Problemas resoltos newProblemas resoltos new
Problemas resoltos new
juanapardo
 
Components of a computer
Components of a computerComponents of a computer
Components of a computer
TechTeacher803
 
オウンドメディア時代だからこそ! MTクラウド版への期待と不満
オウンドメディア時代だからこそ! MTクラウド版への期待と不満オウンドメディア時代だからこそ! MTクラウド版への期待と不満
オウンドメディア時代だからこそ! MTクラウド版への期待と不満
新一 佐藤
 
愛知中小企業家同友会It研究会
愛知中小企業家同友会It研究会愛知中小企業家同友会It研究会
愛知中小企業家同友会It研究会
新一 佐藤
 
Модель автоматизированной системы мониторинга результативности процесса обуче...
Модель автоматизированной системы мониторинга результативности процесса обуче...Модель автоматизированной системы мониторинга результативности процесса обуче...
Модель автоматизированной системы мониторинга результативности процесса обуче...
Mikhail Bogdanov
 
Teaching people how to treat you
Teaching people how to treat youTeaching people how to treat you
Teaching people how to treat you
Brad Hyde
 
PBL Lesson Plan C
PBL Lesson Plan CPBL Lesson Plan C
PBL Lesson Plan C
Mayci Neal
 
Workplace violence by Brad Hyde
Workplace violence by Brad HydeWorkplace violence by Brad Hyde
Workplace violence by Brad Hyde
Brad Hyde
 
Ance_Mundula_24052011
Ance_Mundula_24052011Ance_Mundula_24052011
Ance_Mundula_24052011
Rèdais
 
Dam31303 dti2143 lab sheet 7
Dam31303 dti2143 lab sheet 7Dam31303 dti2143 lab sheet 7
Dam31303 dti2143 lab sheet 7
alish sha
 
Nha Tran Brand Brief
Nha Tran Brand BriefNha Tran Brand Brief
Nha Tran Brand Brief
Ernest Chan
 
Cuestions xenetica molecular_e_acidos_nucleicos
Cuestions xenetica molecular_e_acidos_nucleicosCuestions xenetica molecular_e_acidos_nucleicos
Cuestions xenetica molecular_e_acidos_nucleicos
juanapardo
 
Preparazione precampionato anno 1977 1978
Preparazione precampionato anno 1977 1978Preparazione precampionato anno 1977 1978
Preparazione precampionato anno 1977 1978
Stefano Merlo
 
Los secretos de las presentaciones de Steve Jobs
Los secretos de las presentaciones de Steve JobsLos secretos de las presentaciones de Steve Jobs
Los secretos de las presentaciones de Steve Jobs
David Aguirre
 
THE POWER PRINCIPLES OF TEAM BUILDING
THE POWER PRINCIPLES OF TEAM BUILDINGTHE POWER PRINCIPLES OF TEAM BUILDING
THE POWER PRINCIPLES OF TEAM BUILDING
John Kennedy Akotia
 
Collection Development a la Carte v.2
Collection Development a la Carte v.2Collection Development a la Carte v.2
Collection Development a la Carte v.2
Mary Wilkes Towner
 
Ad

Similar to Dti2143 chapter 3 arithmatic relation-logicalexpression (20)

C programming operators
C programming operatorsC programming operators
C programming operators
Suneel Dogra
 
Lecture - Operators in C++ (Book: Tony Gaddis).pptx
Lecture - Operators in C++ (Book: Tony Gaddis).pptxLecture - Operators in C++ (Book: Tony Gaddis).pptx
Lecture - Operators in C++ (Book: Tony Gaddis).pptx
arshadfarhad08
 
Operators in C Programming
Operators in C ProgrammingOperators in C Programming
Operators in C Programming
Qazi Shahzad Ali
 
Unit ii chapter 1 operator and expressions in c
Unit ii chapter 1 operator and expressions in cUnit ii chapter 1 operator and expressions in c
Unit ii chapter 1 operator and expressions in c
Sowmya Jyothi
 
Operator & Expression in c++
Operator & Expression in c++Operator & Expression in c++
Operator & Expression in c++
bajiajugal
 
Variables, Data Types, Operator & Expression in c in detail
Variables, Data Types, Operator & Expression in c in detailVariables, Data Types, Operator & Expression in c in detail
Variables, Data Types, Operator & Expression in c in detail
gourav kottawar
 
lecture5 bca 1 year.pptx
lecture5 bca 1 year.pptxlecture5 bca 1 year.pptx
lecture5 bca 1 year.pptx
classall
 
Report Group 4 Constants and Variables(TLE)
Report Group 4 Constants and Variables(TLE)Report Group 4 Constants and Variables(TLE)
Report Group 4 Constants and Variables(TLE)
Genard Briane Ancero
 
C Programming : Operators & Expressions.pptx
C Programming  : Operators & Expressions.pptxC Programming  : Operators & Expressions.pptx
C Programming : Operators & Expressions.pptx
DHIVYAB17
 
Operators and expressions in c language
Operators and expressions in c languageOperators and expressions in c language
Operators and expressions in c language
tanmaymodi4
 
Operators inc c language
Operators inc c languageOperators inc c language
Operators inc c language
Tanmay Modi
 
Operators and expressions
Operators and expressionsOperators and expressions
Operators and expressions
vishaljot_kaur
 
c programming2.pptx
c programming2.pptxc programming2.pptx
c programming2.pptx
YuvarajuCherukuri
 
Lecture 7- Operators and Expressions
Lecture 7- Operators and Expressions Lecture 7- Operators and Expressions
Lecture 7- Operators and Expressions
Md. Imran Hossain Showrov
 
Programming for Problem Solving
Programming for Problem SolvingProgramming for Problem Solving
Programming for Problem Solving
Kathirvel Ayyaswamy
 
Lec13
Lec13Lec13
Lec13
Sri Harsha Pamu
 
Chapter 3 dti2143
Chapter 3 dti2143Chapter 3 dti2143
Chapter 3 dti2143
alish sha
 
Operators
OperatorsOperators
Operators
jayesh30sikchi
 
Precedence of operators IN C PROGRAMMING
Precedence of operators IN C PROGRAMMINGPrecedence of operators IN C PROGRAMMING
Precedence of operators IN C PROGRAMMING
GayathriShiva4
 
Basic operators and it's types in c languages
Basic operators and it's types in c languagesBasic operators and it's types in c languages
Basic operators and it's types in c languages
BalaKrishnan466
 
C programming operators
C programming operatorsC programming operators
C programming operators
Suneel Dogra
 
Lecture - Operators in C++ (Book: Tony Gaddis).pptx
Lecture - Operators in C++ (Book: Tony Gaddis).pptxLecture - Operators in C++ (Book: Tony Gaddis).pptx
Lecture - Operators in C++ (Book: Tony Gaddis).pptx
arshadfarhad08
 
Operators in C Programming
Operators in C ProgrammingOperators in C Programming
Operators in C Programming
Qazi Shahzad Ali
 
Unit ii chapter 1 operator and expressions in c
Unit ii chapter 1 operator and expressions in cUnit ii chapter 1 operator and expressions in c
Unit ii chapter 1 operator and expressions in c
Sowmya Jyothi
 
Operator & Expression in c++
Operator & Expression in c++Operator & Expression in c++
Operator & Expression in c++
bajiajugal
 
Variables, Data Types, Operator & Expression in c in detail
Variables, Data Types, Operator & Expression in c in detailVariables, Data Types, Operator & Expression in c in detail
Variables, Data Types, Operator & Expression in c in detail
gourav kottawar
 
lecture5 bca 1 year.pptx
lecture5 bca 1 year.pptxlecture5 bca 1 year.pptx
lecture5 bca 1 year.pptx
classall
 
Report Group 4 Constants and Variables(TLE)
Report Group 4 Constants and Variables(TLE)Report Group 4 Constants and Variables(TLE)
Report Group 4 Constants and Variables(TLE)
Genard Briane Ancero
 
C Programming : Operators & Expressions.pptx
C Programming  : Operators & Expressions.pptxC Programming  : Operators & Expressions.pptx
C Programming : Operators & Expressions.pptx
DHIVYAB17
 
Operators and expressions in c language
Operators and expressions in c languageOperators and expressions in c language
Operators and expressions in c language
tanmaymodi4
 
Operators inc c language
Operators inc c languageOperators inc c language
Operators inc c language
Tanmay Modi
 
Operators and expressions
Operators and expressionsOperators and expressions
Operators and expressions
vishaljot_kaur
 
Chapter 3 dti2143
Chapter 3 dti2143Chapter 3 dti2143
Chapter 3 dti2143
alish sha
 
Precedence of operators IN C PROGRAMMING
Precedence of operators IN C PROGRAMMINGPrecedence of operators IN C PROGRAMMING
Precedence of operators IN C PROGRAMMING
GayathriShiva4
 
Basic operators and it's types in c languages
Basic operators and it's types in c languagesBasic operators and it's types in c languages
Basic operators and it's types in c languages
BalaKrishnan466
 
Ad

More from alish sha (20)

T22016 – how to answer with ubs 9
T22016 – how to answer with ubs 9T22016 – how to answer with ubs 9
T22016 – how to answer with ubs 9
alish sha
 
July 2014 theory exam (theory)
July 2014 theory exam (theory)July 2014 theory exam (theory)
July 2014 theory exam (theory)
alish sha
 
Accounting basic equation
Accounting basic equation Accounting basic equation
Accounting basic equation
alish sha
 
It 302 computerized accounting (week 2) - sharifah
It 302   computerized accounting (week 2) - sharifahIt 302   computerized accounting (week 2) - sharifah
It 302 computerized accounting (week 2) - sharifah
alish sha
 
It 302 computerized accounting (week 1) - sharifah
It 302   computerized accounting (week 1) - sharifahIt 302   computerized accounting (week 1) - sharifah
It 302 computerized accounting (week 1) - sharifah
alish sha
 
What are the causes of conflicts (Bahasa Malaysia)
What are the causes of conflicts (Bahasa Malaysia)What are the causes of conflicts (Bahasa Malaysia)
What are the causes of conflicts (Bahasa Malaysia)
alish sha
 
Lab 9 sem ii_12_13
Lab 9 sem ii_12_13Lab 9 sem ii_12_13
Lab 9 sem ii_12_13
alish sha
 
Lab 10 sem ii_12_13
Lab 10 sem ii_12_13Lab 10 sem ii_12_13
Lab 10 sem ii_12_13
alish sha
 
Lab 6
Lab 6Lab 6
Lab 6
alish sha
 
Lab 5 2012/2012
Lab 5 2012/2012Lab 5 2012/2012
Lab 5 2012/2012
alish sha
 
Purpose elaborate
Purpose elaboratePurpose elaborate
Purpose elaborate
alish sha
 
Lab sheet 1
Lab sheet 1Lab sheet 1
Lab sheet 1
alish sha
 
Test 1 alish schema 1
Test 1 alish schema 1Test 1 alish schema 1
Test 1 alish schema 1
alish sha
 
Lab 6 sem ii_11_12
Lab 6 sem ii_11_12Lab 6 sem ii_11_12
Lab 6 sem ii_11_12
alish sha
 
Test 1 skema q&a
Test 1 skema q&aTest 1 skema q&a
Test 1 skema q&a
alish sha
 
Test 1 skema q&a
Test 1 skema q&aTest 1 skema q&a
Test 1 skema q&a
alish sha
 
Final project
Final projectFinal project
Final project
alish sha
 
Final project
Final projectFinal project
Final project
alish sha
 
Attn list test
Attn list testAttn list test
Attn list test
alish sha
 
Carry markdam31303
Carry markdam31303Carry markdam31303
Carry markdam31303
alish sha
 
T22016 – how to answer with ubs 9
T22016 – how to answer with ubs 9T22016 – how to answer with ubs 9
T22016 – how to answer with ubs 9
alish sha
 
July 2014 theory exam (theory)
July 2014 theory exam (theory)July 2014 theory exam (theory)
July 2014 theory exam (theory)
alish sha
 
Accounting basic equation
Accounting basic equation Accounting basic equation
Accounting basic equation
alish sha
 
It 302 computerized accounting (week 2) - sharifah
It 302   computerized accounting (week 2) - sharifahIt 302   computerized accounting (week 2) - sharifah
It 302 computerized accounting (week 2) - sharifah
alish sha
 
It 302 computerized accounting (week 1) - sharifah
It 302   computerized accounting (week 1) - sharifahIt 302   computerized accounting (week 1) - sharifah
It 302 computerized accounting (week 1) - sharifah
alish sha
 
What are the causes of conflicts (Bahasa Malaysia)
What are the causes of conflicts (Bahasa Malaysia)What are the causes of conflicts (Bahasa Malaysia)
What are the causes of conflicts (Bahasa Malaysia)
alish sha
 
Lab 9 sem ii_12_13
Lab 9 sem ii_12_13Lab 9 sem ii_12_13
Lab 9 sem ii_12_13
alish sha
 
Lab 10 sem ii_12_13
Lab 10 sem ii_12_13Lab 10 sem ii_12_13
Lab 10 sem ii_12_13
alish sha
 
Lab 5 2012/2012
Lab 5 2012/2012Lab 5 2012/2012
Lab 5 2012/2012
alish sha
 
Purpose elaborate
Purpose elaboratePurpose elaborate
Purpose elaborate
alish sha
 
Test 1 alish schema 1
Test 1 alish schema 1Test 1 alish schema 1
Test 1 alish schema 1
alish sha
 
Lab 6 sem ii_11_12
Lab 6 sem ii_11_12Lab 6 sem ii_11_12
Lab 6 sem ii_11_12
alish sha
 
Test 1 skema q&a
Test 1 skema q&aTest 1 skema q&a
Test 1 skema q&a
alish sha
 
Test 1 skema q&a
Test 1 skema q&aTest 1 skema q&a
Test 1 skema q&a
alish sha
 
Final project
Final projectFinal project
Final project
alish sha
 
Final project
Final projectFinal project
Final project
alish sha
 
Attn list test
Attn list testAttn list test
Attn list test
alish sha
 
Carry markdam31303
Carry markdam31303Carry markdam31303
Carry markdam31303
alish sha
 

Recently uploaded (20)

"AI in the browser: predicting user actions in real time with TensorflowJS", ...
"AI in the browser: predicting user actions in real time with TensorflowJS", ..."AI in the browser: predicting user actions in real time with TensorflowJS", ...
"AI in the browser: predicting user actions in real time with TensorflowJS", ...
Fwdays
 
Planetek Italia Corporate Profile Brochure
Planetek Italia Corporate Profile BrochurePlanetek Italia Corporate Profile Brochure
Planetek Italia Corporate Profile Brochure
Planetek Italia Srl
 
John Carmack’s Slides From His Upper Bound 2025 Talk
John Carmack’s Slides From His Upper Bound 2025 TalkJohn Carmack’s Slides From His Upper Bound 2025 Talk
John Carmack’s Slides From His Upper Bound 2025 Talk
Razin Mustafiz
 
Build your own NES Emulator... with Kotlin
Build your own NES Emulator... with KotlinBuild your own NES Emulator... with Kotlin
Build your own NES Emulator... with Kotlin
Artur Skowroński
 
AI Unboxed - How to Approach AI for Maximum Return
AI Unboxed - How to Approach AI for Maximum ReturnAI Unboxed - How to Approach AI for Maximum Return
AI Unboxed - How to Approach AI for Maximum Return
Merelda
 
Breaking it Down: Microservices Architecture for PHP Developers
Breaking it Down: Microservices Architecture for PHP DevelopersBreaking it Down: Microservices Architecture for PHP Developers
Breaking it Down: Microservices Architecture for PHP Developers
pmeth1
 
Storage Setup for LINSTOR/DRBD/CloudStack
Storage Setup for LINSTOR/DRBD/CloudStackStorage Setup for LINSTOR/DRBD/CloudStack
Storage Setup for LINSTOR/DRBD/CloudStack
ShapeBlue
 
AI needs Hybrid Cloud - TEC conference 2025.pptx
AI needs Hybrid Cloud - TEC conference 2025.pptxAI needs Hybrid Cloud - TEC conference 2025.pptx
AI needs Hybrid Cloud - TEC conference 2025.pptx
Shikha Srivastava
 
Eating Our Own Dog Food: How to be taken seriously when it comes to adding va...
Eating Our Own Dog Food: How to be taken seriously when it comes to adding va...Eating Our Own Dog Food: How to be taken seriously when it comes to adding va...
Eating Our Own Dog Food: How to be taken seriously when it comes to adding va...
UXPA Boston
 
NVIDIA’s Enterprise AI Factory and Blueprints_ Paving the Way for Smart, Scal...
NVIDIA’s Enterprise AI Factory and Blueprints_ Paving the Way for Smart, Scal...NVIDIA’s Enterprise AI Factory and Blueprints_ Paving the Way for Smart, Scal...
NVIDIA’s Enterprise AI Factory and Blueprints_ Paving the Way for Smart, Scal...
derrickjswork
 
I’d like to resell your CloudStack services, but...
I’d like to resell your CloudStack services, but...I’d like to resell your CloudStack services, but...
I’d like to resell your CloudStack services, but...
ShapeBlue
 
Building Agents with LangGraph & Gemini
Building Agents with LangGraph &  GeminiBuilding Agents with LangGraph &  Gemini
Building Agents with LangGraph & Gemini
HusseinMalikMammadli
 
STKI Annual Israel IT Market Study 2025 .
STKI Annual Israel IT Market Study 2025 .STKI Annual Israel IT Market Study 2025 .
STKI Annual Israel IT Market Study 2025 .
Dr. Jimmy Schwarzkopf
 
Introducing High Availability: Business Continuity for Every NAS User
Introducing High Availability: Business Continuity for Every NAS UserIntroducing High Availability: Business Continuity for Every NAS User
Introducing High Availability: Business Continuity for Every NAS User
QNAP Marketing
 
The fundamental misunderstanding in Team Topologies
The fundamental misunderstanding in Team TopologiesThe fundamental misunderstanding in Team Topologies
The fundamental misunderstanding in Team Topologies
Patricia Aas
 
Apache CloudStack 101 - Introduction, What’s New and What’s Coming
Apache CloudStack 101 - Introduction, What’s New and What’s ComingApache CloudStack 101 - Introduction, What’s New and What’s Coming
Apache CloudStack 101 - Introduction, What’s New and What’s Coming
ShapeBlue
 
CloudStack + KVM: Your Local Cloud Lab
CloudStack + KVM:   Your Local Cloud LabCloudStack + KVM:   Your Local Cloud Lab
CloudStack + KVM: Your Local Cloud Lab
ShapeBlue
 
Assurance Best Practices: Unlocking Proactive Network Operations
Assurance Best Practices: Unlocking Proactive Network OperationsAssurance Best Practices: Unlocking Proactive Network Operations
Assurance Best Practices: Unlocking Proactive Network Operations
ThousandEyes
 
Four Principles for Physically Interpretable World Models
Four Principles for Physically Interpretable World ModelsFour Principles for Physically Interpretable World Models
Four Principles for Physically Interpretable World Models
Ivan Ruchkin
 
Building Connected Agents: An Overview of Google's ADK and A2A Protocol
Building Connected Agents:  An Overview of Google's ADK and A2A ProtocolBuilding Connected Agents:  An Overview of Google's ADK and A2A Protocol
Building Connected Agents: An Overview of Google's ADK and A2A Protocol
Suresh Peiris
 
"AI in the browser: predicting user actions in real time with TensorflowJS", ...
"AI in the browser: predicting user actions in real time with TensorflowJS", ..."AI in the browser: predicting user actions in real time with TensorflowJS", ...
"AI in the browser: predicting user actions in real time with TensorflowJS", ...
Fwdays
 
Planetek Italia Corporate Profile Brochure
Planetek Italia Corporate Profile BrochurePlanetek Italia Corporate Profile Brochure
Planetek Italia Corporate Profile Brochure
Planetek Italia Srl
 
John Carmack’s Slides From His Upper Bound 2025 Talk
John Carmack’s Slides From His Upper Bound 2025 TalkJohn Carmack’s Slides From His Upper Bound 2025 Talk
John Carmack’s Slides From His Upper Bound 2025 Talk
Razin Mustafiz
 
Build your own NES Emulator... with Kotlin
Build your own NES Emulator... with KotlinBuild your own NES Emulator... with Kotlin
Build your own NES Emulator... with Kotlin
Artur Skowroński
 
AI Unboxed - How to Approach AI for Maximum Return
AI Unboxed - How to Approach AI for Maximum ReturnAI Unboxed - How to Approach AI for Maximum Return
AI Unboxed - How to Approach AI for Maximum Return
Merelda
 
Breaking it Down: Microservices Architecture for PHP Developers
Breaking it Down: Microservices Architecture for PHP DevelopersBreaking it Down: Microservices Architecture for PHP Developers
Breaking it Down: Microservices Architecture for PHP Developers
pmeth1
 
Storage Setup for LINSTOR/DRBD/CloudStack
Storage Setup for LINSTOR/DRBD/CloudStackStorage Setup for LINSTOR/DRBD/CloudStack
Storage Setup for LINSTOR/DRBD/CloudStack
ShapeBlue
 
AI needs Hybrid Cloud - TEC conference 2025.pptx
AI needs Hybrid Cloud - TEC conference 2025.pptxAI needs Hybrid Cloud - TEC conference 2025.pptx
AI needs Hybrid Cloud - TEC conference 2025.pptx
Shikha Srivastava
 
Eating Our Own Dog Food: How to be taken seriously when it comes to adding va...
Eating Our Own Dog Food: How to be taken seriously when it comes to adding va...Eating Our Own Dog Food: How to be taken seriously when it comes to adding va...
Eating Our Own Dog Food: How to be taken seriously when it comes to adding va...
UXPA Boston
 
NVIDIA’s Enterprise AI Factory and Blueprints_ Paving the Way for Smart, Scal...
NVIDIA’s Enterprise AI Factory and Blueprints_ Paving the Way for Smart, Scal...NVIDIA’s Enterprise AI Factory and Blueprints_ Paving the Way for Smart, Scal...
NVIDIA’s Enterprise AI Factory and Blueprints_ Paving the Way for Smart, Scal...
derrickjswork
 
I’d like to resell your CloudStack services, but...
I’d like to resell your CloudStack services, but...I’d like to resell your CloudStack services, but...
I’d like to resell your CloudStack services, but...
ShapeBlue
 
Building Agents with LangGraph & Gemini
Building Agents with LangGraph &  GeminiBuilding Agents with LangGraph &  Gemini
Building Agents with LangGraph & Gemini
HusseinMalikMammadli
 
STKI Annual Israel IT Market Study 2025 .
STKI Annual Israel IT Market Study 2025 .STKI Annual Israel IT Market Study 2025 .
STKI Annual Israel IT Market Study 2025 .
Dr. Jimmy Schwarzkopf
 
Introducing High Availability: Business Continuity for Every NAS User
Introducing High Availability: Business Continuity for Every NAS UserIntroducing High Availability: Business Continuity for Every NAS User
Introducing High Availability: Business Continuity for Every NAS User
QNAP Marketing
 
The fundamental misunderstanding in Team Topologies
The fundamental misunderstanding in Team TopologiesThe fundamental misunderstanding in Team Topologies
The fundamental misunderstanding in Team Topologies
Patricia Aas
 
Apache CloudStack 101 - Introduction, What’s New and What’s Coming
Apache CloudStack 101 - Introduction, What’s New and What’s ComingApache CloudStack 101 - Introduction, What’s New and What’s Coming
Apache CloudStack 101 - Introduction, What’s New and What’s Coming
ShapeBlue
 
CloudStack + KVM: Your Local Cloud Lab
CloudStack + KVM:   Your Local Cloud LabCloudStack + KVM:   Your Local Cloud Lab
CloudStack + KVM: Your Local Cloud Lab
ShapeBlue
 
Assurance Best Practices: Unlocking Proactive Network Operations
Assurance Best Practices: Unlocking Proactive Network OperationsAssurance Best Practices: Unlocking Proactive Network Operations
Assurance Best Practices: Unlocking Proactive Network Operations
ThousandEyes
 
Four Principles for Physically Interpretable World Models
Four Principles for Physically Interpretable World ModelsFour Principles for Physically Interpretable World Models
Four Principles for Physically Interpretable World Models
Ivan Ruchkin
 
Building Connected Agents: An Overview of Google's ADK and A2A Protocol
Building Connected Agents:  An Overview of Google's ADK and A2A ProtocolBuilding Connected Agents:  An Overview of Google's ADK and A2A Protocol
Building Connected Agents: An Overview of Google's ADK and A2A Protocol
Suresh Peiris
 

Dti2143 chapter 3 arithmatic relation-logicalexpression

  翻译: