Print alphabet from a-z

#include<stdio.h>
#include<conio.h>
main()
{
  int i;
  for(i=97;i<=122;i++)
  {
    printf("%c",i);
  }
   printf("\n");
}

Post a Comment

If you have any doubts, Please let me know
Thanks!

Previous Post Next Post