Mega Code Archive

 
Categories / C# Tutorial / Unsafe
 

Declaring a Pointer

The general form of a pointer variable declaration is type* var-name;  int* ip; For a float pointer, use float* fp;