QBASIC program to display the consonant letters from the input string
Govind Prasad Joshi
November 28, 2022
0
QBASIC program to display the consonant letters from the input string CLS INPUT "Enter any string"; a$ FOR i = 1 TO LEN(a$) ...

