Why Can`t member function be called by pointer object of class/struct.
i was trying to call the member fuction of struct though pointer object it showed me error like
request for member 'Table::reveal' in `T1`, which is of non-class type 'Table*'
where,
Table is structure
reveal is member function
T1 is the object pointer object created though
typedef Table *Tptr;
Tptr T1;
if yes please help me out