Consider the following declearation
int *a;
char *b;
float *c;
Assume size of charecter,integer and float are 1 byte,2 bytes and 4 bytes respectively. Also assume address size is 2 bytes.
Find the value printed by sizeof(*a),sizeof(*b) and sizeof(*c) respectively.