Demonstrate the effects of pointer arithmethic : Pointer Unsafe « Language Basics « C# / C Sharp






Demonstrate the effects of pointer arithmethic

Demonstrate the effects of pointer arithmethic
/*
C#: The Complete Reference 
by Herbert Schildt 

Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/


// Demonstrate the effects of pointer arithmethic. 
 
using System; 
 
public class PtrArithDemo { 
  unsafe public static void Main() { 
    int x; 
    int i;  
    double d; 
 
    int* ip = &i; 
    double* fp = &d; 
 
    Console.WriteLine("int     double\n"); 
 
    for(x=0; x < 10; x++) { 
       Console.WriteLine((uint) (ip) + " " + 
                         (uint) (fp)); 
       ip++; 
       fp++; 
    } 
  } 
}


           
       








Related examples in the same category

1.References and Pointers
2.Demonstrate pointers and unsafeDemonstrate pointers and unsafe
3.Demonstrate fixedDemonstrate fixed
4.Demonstrate pointer comparisonDemonstrate pointer comparison
5.An array name with an index yields a pointer to the start of the arrayAn array name with an index yields a pointer to the 
   start of the array
6.Index a pointer as if it were an arrayIndex a pointer as if it were an array
7.Use fixed to get a pointer to the start of a stringUse fixed to get a pointer to the start of a string
8.Multiple IndirectMultiple Indirect
9.Unsafe code: copyUnsafe code: copy
10.Pointers and Declarative Pinning
11.Unsafe ContextUnsafe Context