view CbC-examples/test_call.c @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents 4c6926a2b9bc
children 5d30d517ebed
line wrap: on
line source


int test(int a){
	printf("a = %d\n", a);
	return 10*a;
}

int main(){
	test(10);
	return 0;
}