বিভিন্ন 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

Adding More Expressions into for

Adding More Expressions into for

The C language allows you to put more expressions into the three expression fields in the for statement. Expressions in a single expression field are separated by commas.

The Null Statement

The Null Statement

Looping Under the for Statement

Looping Under the for Statement

The general form of the for statement is

for (expression1; expression2; expression3) {
   statement1;
   statement2;
   .
   .
   .
}

Using Nested Loops

Using Nested Loops

You can put a loop inside another one to make nested loops. The computer will run the inner loop first before it resumes the looping for the outer loop.

Listing 7.7 is an example of how nested loops work.

 

The do-while Loop

The do-while Loop

You may note that in the for and while statements, the expressions are set at the top of the loop. However, in this section, you're going to see another statement used for looping,