বিভিন্ন More Data Types এবং Functions

Submitted by administrator on Mon, 01/02/2012 - 16:19

In Chapter 4, "Data Types and Names in C," you learned about most of the data types, such as char, int, float, and double. In Hour 15, "Functions in C," you learned the basics of using functions in C. In this hour, you'll learn more about data types and functions from the following topics:

    The enum data type
    The typedef statement
    Function recursion
    Command-line arguments



Summary

  •     The enum (that is, enumerated) data type can be used to declare named integer constants.
  •     By default, the first enum name starts with the value of 0. Each name in the rest of the list increases by one from the value contained by the name on its left side.
  •     If needed, you can assign any integer values to enumerated names.
  •     You can create your own names for data types with the help of the typedef keyword. Those names can then be used as synonyms for the data types.
  •     In ANSI C, there is a header file called stddef.h that contains a dozen typedef definitions.
  •     A function in C can be made to call itself. Such a function is said to be recursive.
  •     You can use command-line arguments to pass information to the main() function in your program.
  •     There are two built-in arguments to the main() function. The executable filename you entered from the operating system's command line is counted as the first command-line argument.
  •     The first built-in argument receives the number of command-line arguments entered by the user. The second built-in argument is a pointer to an array of pointers that refers to the strings of command-line arguments.



   

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.