Contents

Void pointer can point to which type of objects?
a) int                                      
b) float
c) double                                              
d) all of these

d

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

d

Which unary operator is used for determining the size of an array?
a) sizeof                                               
b) s_array
c) size_array                        
d) size_ofarray

a

A pointer contains………
a) value of variable            
b) name of variable
c) address of variable      
d) all of these

c

‘ptr’ is a pointer to a data type. The expression *ptr++ is evaluated as……….
a) (*ptr++)                            
b) *(ptr)++
c) *(ptr++)                           
d) none of these

c