[ create a new paste ] login | about

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

C, pasted on Apr 22:
1
2
3
4
5
6
#include <stdio.h>
void main(void)
{
int a = 0, b = 1, c = 2;
printf("a=%p, b=%p, c=%p", &a, &b, &c);
}


Output:
1
a=0xffb8e4dc, b=0xffb8e4d8, c=0xffb8e4d4


Create a new paste based on this one


Comments: