Declare the variable count will be used to store an integer
Solution
a) Declaration of variable count of integer type:
int count;
b)Declaration of variable volt to store floating point number:
float volt;
c)Declaration of variable power to store double precision number:
double power;
d)Declaration of variable keychar to store a character:
char keychar;

