128k views
1 vote
During data declaration, a name is binded to a memory location, what else can be identify as part of this process?

1 Answer

7 votes

data declaration means a variable which contain data value and it can be declared as integer, float, character, double, boolean (data types).

example:

int r;

char name;

float g;

double k= 23.34;

User Jzhinga
by
6.5k points