Home  |  IT Zone  | Practice ZoneTips / Tricks  |  Did You Know  |  Inspirational  |  Health  |  Insurance  |  Universities  |  Forex  |  Mathematics  |  Illusions  |  Children Day Quotes  |  Be Aware  |  Articles  | Funny Pics | Entertainment | Songs | Simple Joys of Life |

To check the entered character is alphabet or not. (Qbasic Code)

To check the entered character is alphabet or not.
  • CLS
    INPUT "Enter character"; c$
    ch$ = UCASE$(c$)
    a = ASC(ch$)
    IF a >= 65 AND a <= 90 THEN
        PRINT "The given character is alphabet"
    ELSE
        PRINT "The given character is not alphabet"
    END IF
    END

Share :

X
Back To Top

facebook main

Powered by Blogger.