view test_call.c @ 0:bacef8675607

init repository
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Tue, 14 Oct 2014 17:34:59 +0900
parents
children 35d6eabeadb0
line wrap: on
line source


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

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