#include <stdio.h>


#include <ctype.h>



int main(void)


{


char a;



printf("Input text:");


char* gets_s("%s");



while ((a = getchar()) != EOF)


{


if (islower(a))


a = toupper(a);


putchar(a);


}


return 0;


}


이렇게 프로그램을 짯는데 값출력후 다시 입력창을 반복시키고싶은데 어떻게해야하나요?