Void pointer can point to which type of objects?
a) int
b) float
c) double
d) all of these
The pointer can point to any variable that is not declared with which of these?
a) const
b) static
c) volatile
d) both a & b
Which unary operator is used for determining the size of an array?
a) sizeof
b) s_array
c) size_array
d) size_ofarray
A pointer contains………
a) value of variable
b) name of variable
c) address of variable
d) all of these
‘ptr’ is a pointer to a data type. The expression *ptr++ is evaluated as……….
a) (*ptr++)
b) *(ptr)++
c) *(ptr++)
d) none of these