changeset 6:e7f9f20d016b

update
author e085711
date Tue, 01 Mar 2011 05:07:50 +0900
parents 37dbaf9faf12
children 6b57e23a26cb
files returnCheck/return returnCheck/return_cbc.cbc
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
Binary file returnCheck/return has changed
--- a/returnCheck/return_cbc.cbc	Tue Mar 01 04:47:40 2011 +0900
+++ b/returnCheck/return_cbc.cbc	Tue Mar 01 05:07:50 2011 +0900
@@ -1,10 +1,9 @@
-#include<stdio.h>
+#include <stdio.h>
 
 int BUFSIZE = 1024;
 
-__code  method(int n);
-
-__code method(int n){
+__code
+method (int n){
   //  char string[BUFSIZE];
   printf("%d\n",n);
   goto  method(++n);
@@ -14,3 +13,4 @@
   goto  method(0);
   return 0;
 }
+