=== 소  감 ===


=== 코  드 ===
{{{~cpp 

#include <stdio.h>

void repeat_prt(char* string,int count)
{
	int i;
	for(i=0;i<count;i++)
	{
		puts(string);
	}

}


int main()
{

	repeat_prt("CAUCSE LOVE.",5);

	return 0;

}
}}}
=== 나한테 할 말 ===


----
[LittleAOI] [반복문자열]