diff CbC-examples/test02.c @ 16:4c6926a2b9bc

examples.
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Thu, 24 Sep 2009 12:51:25 +0900
parents
children 5d30d517ebed
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CbC-examples/test02.c	Thu Sep 24 12:51:25 2009 +0900
@@ -0,0 +1,22 @@
+#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;
+}
+