XCore Exchange
The community of XMOS. The place to be when developing with XMOS technology.
Skip to content
Post by In_Control001 » Mon May 10, 2010 8:27 pm
Code: Select all
voidswap(int&x,int&y){ inttmp=x; x=y; y=x; } intmain(void){ inta=1; intb=2; swap(a,b); }
Post by skoe » Mon May 10, 2010 9:52 pm
Return to “Getting started”