C প্রোগ্রাম এর ডেটা টাইপ এবং নামকরণ করার পদ্ধতি

Submitted by administrator on Mon, 01/02/2012 - 14:32

ক্লাস 4: C ল্যাঙ্গুয়েজ এর ডেটা টাইপ এবং নেম

CLASS 4: Data Types and Names in C

You learned how to make a valid name for a C function in Hour 3, "The Essentials of C Programs." Now, you're going to learn more about naming a variable and the C keywords reserved by the C compiler in this hour.

Also in this hour you're going to learn about the four data types of the C language in detail:

  •     char data type
  •     int data type
  •     float data type
  •     double data type

 

Using Scientific Notation
The C language uses scientific notation to help you write lengthy floating-point numbers.

In scientific notation, a number can be represented by the combination of the mantissa and the exponent. The format of the notation is that the mantissa is followed by the exponent, which is prefixed by e or E. Here are two examples:

 

[mantissa]e[exponent],

and

[mantissa]E[exponent].

 

For instance, 5000 can be represented by 5e3 in scientific notation. Likewise, -300 can be represented by -3e2, and 0.0025 by 2.5e-3.

 

Correspondingly, the format specifier, %e or %E, is used to format a floating-point number in scientific notation. The usage of %e or %E in the printf() function is the same as %f.

 

Naming a Variable
You've learned how to make a valid function name. In this section, let's focus on naming variables. Function names and variable names are both identifiers in C.

The following are all the characters you can use to make a valid variable name:

  • Characters A through Z and a through z.
  • Digit characters 0 through 9, which can be used in any position except the first of a variable name.
  • The underscore character (_).

For instance, stop_sign, Loop3, and _pause are all valid variable names.

Now, let's see what you cannot use in variable naming:

  • A variable name cannot contain any C arithmetic signs.
  • A variable name cannot contain any dots (.).
  • A variable name cannot contain any apostrophes (`).
  • A variable name cannot contain any other special symbols such as *, @, #, ?, and so on.

Some invalid variable names, for example, are, 4flags, sum-result, method*4, and what_size?.

 

WARNING
Never use the C keywords reserved in the C language, or the names of the standard C library functions, as variable names in your C program.

 

Summary

  • In this lesson you've learned about the following:
  • The C keywords reserved in the C language
  • The char data type and the %c format specifier
  • The int data type and the %d format specifier
  • The float data type and the %f format specifier
  • Floating-point numbers can be suffixed with f or F to specify float. A floating-point number without suffix is double by default.
  • The possible ranges of the char, int, and float data types
  • The double data type
  • Scientific notation and the %e and %E format specifiers
  • The rules you have to follow to make a valid variable name


In the next lesson you'll learn more about the printf() function and other functions to deal with input and output.

 

 

 

 

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,