[ create a new paste ] login | about

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

C, pasted on Feb 12:
1
2
3
4
5
6
7
8
9
10
11
void call(int, int, int);
void main()
{
    int a=10;
    call(a,a++,++a);

}
void call(int x,int y, int z)
{
    printf("%d %d %d ",x,y,z);
}  


Output:
1
12 11 12 


Create a new paste based on this one


Comments: