9. Write a C program that prints the English alphabet (a-z).

PHOTO EMBED

Sat Jul 22 2023 11:24:18 GMT+0000 (Coordinated Universal Time)

Saved by @Codes

// Online C compiler to run C program online
#include <stdio.h>

int main() {
    char ch = 'a';
    while(ch <= 'z'){
        printf("%d ", ch);
        ch++;
    }
    return 0;
}
content_copyCOPY