বিভিন্ন ধরণের Data Items

Submitted by tushar pramanick on Mon, 01/02/2012 - 16:23

 In Chapter 12, "Storing Similar Data Items," you learned how to store data of the same type into arrays. In this hour, you'll learn to use structures to collect data items that have different data types. The following topics are covered in this lesson:

    Declaring and defining structures
    Referencing structure members
    Structures and pointers
    Structures and functions
    Arrays of structures



Summary

  •     You can group variables of different types with a data type called a structure.
  •     The data items in a structure are called fields or members of the structure.
  •     The struct keyword is used to start a structure declaration or a structure variable definition.
  •     The dot operator (.) is used to separate a structure name and a member name in referencing the structure member.
  •     The arrow operator (->) is commonly used to reference a structure member with a pointer.
  •     A structure can be passed to a function, and a function can return a structure back to the caller.
  •     Passing a function with a pointer that points to a structure is more efficient than passing the function with the entire structure.
  •     Arrays of structures are permitted in C.
  •     You can enclose a structure within another structure. The latter is called a nested structure.
  •     It's legal to put a pointer into a structure even though the pointer may point to another structure that has not been declared yet.
     

Related Items

Manipulating Bits

Manipulating Bits

In previous hours, you learned that computer data and files are made of bits (or bytes). There is even an operator in C_the sizeof operator_that can be used to measure the number of bytes for data types.

Everything Is Logical

Everything Is Logical

Now, it's time for you to learn about a new set of operators: logical operators.

There are three logical operators in the C language:
&&     The logical AND operator
||     The logical OR operator

Question and Answer

    Q Why do we need the sizeof operator?

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.

Playing with an Infinite Loop

Playing with an Infinite Loop

If you have a for statement like this,

for ( ; ; ){
  /* statement block */
}