আরো বিভিন্ন 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 Basics of Disk File I/O

The Basics of Disk File I/O

Now let's focus on how to open and close a disk data file and how to interpret error messages returned by I/O functions.

Files Versus Streams

Files Versus Streams

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

    Q What are the differences between a union and a structure?

Making Structures Flexible

Making Structures Flexible

The second application of unions is to nest a union inside a structure so that the structure can hold different types of values.