Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and beauty - Define a variable for each basic data type (basic integer, long integer, character type, single precision and double precision).
Define a variable for each basic data type (basic integer, long integer, character type, single precision and double precision).
int a; //basic integer

long int b; //Long integer

char c; //Character type

Floating d; //Single precision floating-point type

Double e; //Double precision floating-point type

char s[20]; //Character array or string type