[ create a new paste ] login | about

Link: http://codepad.org/JuXdSxqw    [ raw code | output | fork ]

C, pasted on Oct 10:
1
2
3
4
5
6
7
8
9
10
#include<stdio.h> 

int main() 
{ 
int arr[5] = { 1, 2, 3, 4, 5 }; 
int *ptr = arr; 

printf("%u\n,%u\n", ptr,(ptr+1)); 
return 0; 
} 


Output:
1
2
4287034268
,4287034272


Create a new paste based on this one


Comments: