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;
}
== !! ==
, 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 값 기 결과 ..^^;--
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);
}










