11 lines
122 B
C
11 lines
122 B
C
#include <stdio.h>
|
|
|
|
int main(){
|
|
int c = 1;
|
|
printf("Enter your text\n");
|
|
while(c = 1){
|
|
c = getchar();
|
|
}
|
|
return 0;
|
|
}
|