comparison returnCheck/return_cbc.cbc @ 3:e9211e83b79d

update return_cbc.cbc
author e085711
date Tue, 01 Mar 2011 04:38:41 +0900
parents
children e7f9f20d016b
comparison
equal deleted inserted replaced
2:e0fdef113de4 3:e9211e83b79d
1 #include<stdio.h>
2
3 int BUFSIZE = 1024;
4
5 __code method(int n);
6
7 __code method(int n){
8 // char string[BUFSIZE];
9 printf("%d\n",n);
10 goto method(++n);
11 }
12
13 int main(int argc, char* argv[]){
14 goto method(0);
15 return 0;
16 }