SlideShare a Scribd company logo
1 of 23
ARVIN
    santos
    buendia
0
1
1
0
0
0
1
1
1
0
NOTE :
 PARENTHESIS can be used to OVERRIDE the order of
precedence and force some parts of an expression to be
evaluated first before the other parts.

        ( 3 + 7 ) * ( 9 - 2 ) = 70

        ! ( 0 || 1 ) = 0


 NOT ALL ALGEBRAIC STATEMENTS are allowed as TURBO-
C EXPRESSION that’s why you need to convert it.
Evaluate the given arithmetic equation below to
arrive with a single numerical value.

5-8+2*2


8+(3/2)


( 9 + ( 27 / 3 )) / - 3 * 3
Solve the following Relational and Logical Equation.

( 5 + 2 ) + ( -5 + 5) >= 77


( 3 - 2 * 5 * 2 ) != 125


1 && 0 || ( 1 && !0 )

More Related Content

More from Arvin Buendia

More from Arvin Buendia (6)

Java@intro to programming
Java@intro to programmingJava@intro to programming
Java@intro to programming
 
Java@intro to java
Java@intro to javaJava@intro to java
Java@intro to java
 
Intro to java
Intro to javaIntro to java
Intro to java
 
Intro to programming
Intro to programmingIntro to programming
Intro to programming
 
Intro to java
Intro to javaIntro to java
Intro to java
 
Introduction to turbo c
Introduction to turbo cIntroduction to turbo c
Introduction to turbo c
 

Turbo-C Operators

  • 1. ARVIN santos buendia
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17. 0 1
  • 20. NOTE :  PARENTHESIS can be used to OVERRIDE the order of precedence and force some parts of an expression to be evaluated first before the other parts. ( 3 + 7 ) * ( 9 - 2 ) = 70 ! ( 0 || 1 ) = 0  NOT ALL ALGEBRAIC STATEMENTS are allowed as TURBO- C EXPRESSION that’s why you need to convert it.
  • 21.
  • 22. Evaluate the given arithmetic equation below to arrive with a single numerical value. 5-8+2*2 8+(3/2) ( 9 + ( 27 / 3 )) / - 3 * 3
  • 23. Solve the following Relational and Logical Equation. ( 5 + 2 ) + ( -5 + 5) >= 77 ( 3 - 2 * 5 * 2 ) != 125 1 && 0 || ( 1 && !0 )