C Program to Display Character from A to Z Using Loop

C Program to Display Character from A to Z Using Loop


* C program to display character from A to Z using loops. */
#include <stdio.h>
int main()
{
    char c;
    for(c='A'; c<='Z'; ++c)
       printf("%c ",c);
    return 0;
}

Comments

Popular posts from this blog

C Program to Display the ATM Transaction

Fortran

Java programming language