view CbC-examples/test02.c @ 120:f93fa5091070

fix conv1.c
author mir3636
date Thu, 08 Mar 2018 14:53:42 +0900
parents 4c6926a2b9bc
children 5d30d517ebed
line wrap: on
line source

#include<stdio.h>

__code test_code(void){
	printf("\t\ttest_code: return 10\n");
	return;
}

__code test_goto(int a){
	printf("\ttest_goto: a = %d\n", a);
	//return test_code();
	goto test_code();
}

int main(int argc, char **argv){
	int ret=0;
	printf("test code\n");
	test_goto(20);
	printf("main: ret = %d\n", ret);

	return 0;
}