pvjc22/du1/program.c

11 lines
122 B
C
Raw Normal View History

2022-02-20 12:20:20 +00:00
#include <stdio.h>
int main(){
int c = 1;
printf("Enter your text\n");
while(c = 1){
c = getchar();
}
return 0;
}