June 01, 2005
Moving to 64-Bits
Listing 4
long k;
int *ptr;
int main(void)
{
k = 2 ;
ptr = &k;
printf("k has the value %ld, value pointed to by ptr is %ld\n", k, *ptr);
return 0;
}
|
|
||||||||||||||||||||||||||||
|
|
|
|