U E D R , A S I H C RSS

반복문자열/김대순

output

~cpp 
#include<stdio.h>
int y(int n);

main()
{
	  int z;
          for(z=0;z<5;z++)
          y(z);

}
int y(int n)
{
          printf(" %d CAUCSE LOVE.\n",n+1);
	  return 0;
}

== 문!! ==
http://blogfiles1.naver.net/data13/2006/3/29/80/warning-1006kds.jpg
되는데, warning ~~~!!!
를 굳 딩 같..ㅡㅡ; 미~~!!

명, 때는 미를 나내는 변고, 를 명내는 .
y()로 리면 다른 만 보고는 뭘 모르겠? -
→ re: ..^^ 감다..-대

딩 by

~cpp 
#include<stdio.h>
void y(int n); 


int main() 
{ 
      int z; 
      for(z=0;z<5;z++) 
       y(z);

      return 0;

} 
void y(int n) 
{ 
          printf(" %d CAUCSE LOVE.\n",n+1); 
       
}

딩 by

~cpp 
#include<stdio.h>
void y(int n); 


int main() 
{ 
      for(int z=0;z<5;z++) 
       y(z);

      return 0;

} 
void y(int n) 
{ 
          printf(" %d CAUCSE LOVE.\n",++n); 
       
}

++ 는 경 다. 기 때문 무 문다. 만 다과 같떨까? -- Leonardong
re- 다. 길때 int +1 게될 경 4바 기 때문 는 결과가 나 ..^^;-대-
~cpp 
#include<stdio.h>
void y(int &n); 


int main() 
{ 
      for(int z=0;z<5;z++) 
       y(z);

      return 0;

} 
void y(int &n) 
{ 
          printf(" %d CAUCSE LOVE.\n",++n); 
       
}

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:29:33
Processing time 0.0098 sec