Pointer C Tutorial

xPtr cannot be used to modify the value of the variable to which it points.

#include 
void f( const int *xPtr );
int main()
{
   int y;       
   f( &y );     
   return 0;    
}
void f( const int *xPtr )
{
   //*xPtr = 100;  /* error: cannot modify a const object */
}