This blog is under construction

Saturday 17 March 2012

isalpha example in C

Header file:
    ctype.h

Synopsis:
    int isalpha (int input)   

Description:
    Checks whether a given input is an alphabetic character or not.

Return Value:
    TRUE(a non-zero value) on success
    0 on failure.


isalpha function C example


  #include<stdio.h>
  #include<ctype.h>
  int main() {
        int c;
        printf("Enter your input:");
        c = getchar();

        if (isalpha(c))
                printf("The given input is an alphabet\n");
        else
                printf("The given input is not an alphabet\n");

        printf("Return value of isalpha: %d\n", isalpha(c));
        return 0;
  }



  Output:
  Enter your input:1
  The given input is not an alphabet
  Return value of isalpha: 0


1 comment:

  1. Do you need Finance? Are you looking for Finance? Are you looking for finance to enlarge your business? We help individuals and companies to obtain finance for business expanding and to setup a new business ranging any amount. Get finance at affordable interest rate of 3%, Do you need this finance for business and to clear your bills? Then send us an email now for more information contact us now via (financialserviceoffer876@gmail.com) whats-App +918929509036 Dr James Eric Finance Pvt Ltd Thanks

    ReplyDelete