Computer Science, asked by cyrusop40, 1 month ago

write a program to store the alphabets into an array and then display them by using only

pointer operations​

Answers

Answered by KillerXoo7
0

Explanation:

#include <stdio.h> int main() { char c; for (c = 'A'; c <= 'Z'; ++c) printf("%c ", c); return 0; }

Similar questions