. Write a program which ask the user to enter a sentence (character by character) and when user press full stop (.) character program should display the full sentence and exit.
2 answers
I wonder if "suranthi" comes close to being the subject of your post?
sure. create the file suranthi.pl
system "stty raw";
while ($_ = getc) {
last if $_ eq ".";
}
system "stty cooked";
perl suranthi.pl
system "stty raw";
while ($_ = getc) {
last if $_ eq ".";
}
system "stty cooked";
perl suranthi.pl