#include <stdio.h>
#include <stdlib.h>
int main( void )
{
char str[255] = __FILE__;
sprintf(str,"type \\"%s\\"",__FILE__);
system(str);
return 0;
}
망했어요 부들부들;;
#include <stdio.h>
#include <stdlib.h>
int main( void )
{
char str[255] = __FILE__;
sprintf(str,"type \\"%s\\"",__FILE__);
system(str);
return 0;
}
망했어요 부들부들;;
파일알고리즘 없이 문자열로 출력하는건 가능할까요?