Monday, 4 September 2017

C-Program to print Alphabets from A to Z



#include<stdio.h>

int  main()
 {
 int i;
 for(i=65;i<=90;i++)
 {
 printf("%c\n",i);
 }
return 0;
 }

Output :
 A
B
.
.
.
Z

No comments:

Post a Comment

C-Program to know whether the character is vowel or not

#include<stdio.h> int main() {   char c;   printf("Enter a character to know whether it is vowel or not\n");   scanf("...