[ create a new paste ] login | about

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

C, pasted on Sep 16:
1
2
3
4
5
6
7
#include <stdio.h>
int main()
{
	int arr[2][2]={ 1, 2, 3, 4 };
	printf("%u\n", arr);
	return 0;
}


Output:
1
4287960720


Create a new paste based on this one


Comments: