Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and beauty - The following statement in C language: What types of numbers are A of int a and double a respectively? Natural number, floating point number (decimal), integer, real number, character
The following statement in C language: What types of numbers are A of int a and double a respectively? Natural number, floating point number (decimal), integer, real number, character
int a; //means that definition a is an integer.

Double a; //Indicates that definition A is a double-precision floating-point type.

Note that the above two statements cannot appear in the same function unless the variable names are different.