view CbC-examples/test_call.c @ 107:a3a2f64cf8f4

modify implementation of rectype
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Thu, 14 Jun 2012 19:44:54 +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;
}