Friday, October 16, 2009

Data Types

The basic data types provided by the C language are char, int, float, and double. In addition, there are array, enum,
struct, and union data types which you can declare and use in your C programs.

The general form to define a list of variables with a specified data type is
data_type variable_name_list;
Here data_type can be one of the keywords of the data types. variable_name_list represents a list of variable names
separated by commas.

No comments:

Post a Comment