[ create a new paste ] login | about

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

C, pasted on Oct 20:
1
2
3
4
5
6
7
8
#include<stdio.h>
main()
{
 int a[] ={ 1,2,3,4,5,6,7};
char c[] = {' a','x','h','o','k'};
printf("%d     %d ", &a[3],&a[0]);
return 0;
}


Output:
1
-1085768040     -1085768052 


Create a new paste based on this one


Comments: