6. Write a C program that prints the English alphabet using pointers.

PHOTO EMBED

Wed Aug 09 2023 13:15:31 GMT+0000 (Coordinated Universal Time)

Saved by @Codes

// Online C compiler to run C program online
#include <stdio.h>
int main() {
    char ch = 'a';
    char *p;
    *p = ch;
    while(ch <= 122){
     printf("%c", ch);
     ch++;
    }
    


    return 0;
}
content_copyCOPY