codepad
[
create a new paste
]
login
|
about
Link:
http://codepad.org/X7RyANgi
[
raw code
|
output
|
fork
]
C
,
pasted on Nov 5:
1
2
3
4
5
int
main
()
{
int
x
[]
=
{
1
,
2
,
};
printf
(
"%d %d"
,
x
[
0
],
x
[
1
]);
return
0
;
}
Output:
1
1 2
Create a new paste based on this one
Comments: