আরো বিভিন্ন Operators সমূহ

Submitted by administrator on Mon, 01/02/2012 - 15:35

CLASS 8 - More Operators

 

In Chapter 6, "Manipulating Data with Operators," you learned about some important operators in C, such as the arithmetic assignment operators, the unary minus operator, the increment and decrement operators, and the relational operators. In this lesson you'll learn about more operators, including

    The sizeof operator
    Logical operators
    Bit-manipulation operators
    The conditional operator

 

 

Summary

In this lesson you've learned the following:

  •     The sizeof operator returns the number of bytes that a specified data type can have. You can use the operator to measure the size of a data type on your machine.
  •     The logical AND operator (&&) returns 1 only if both its two operands (that is, expressions) are TRUE. Otherwise, the operator returns 0.
  •     The logical OR operator (||) returns 0 only if both its two operands are FALSE. Otherwise, the operator returns 1.
  •     The logical negation operator (!) reverses the logical value of its operand.
  •     There are six bit-manipulation operators: the bitwise AND operator (&), the bitwise OR operator (|), the bitwise XOR operator (^), the bitwise complement operator (~), the right-shift operator (>>), and the left-shift operator (<<).
  •     The conditional operator (?:) is the only operator in C that can take three operands.



 

Related Items

The Dereference Operator (*)

The Dereference Operator (*)

Declaring Pointers

Declaring Pointers

What Is a Pointer?

What Is a Pointer?

A pointer is a variable whose value is used to point to another variable.

Exercises : Answer the following Question

To help solidify your understanding of this hour's lesson, you are encouraged to answer the quiz questions and finish the exercises provided in the Workshop before you move to the next lesson.

Question and Answer

Question and Answer

    Q How many expressions are there in the if statement?