write a program to store the alphabets into an array and then display them by using only
pointer operations
Answers
Answered by
0
Explanation:
#include <stdio.h> int main() { char c; for (c = 'A'; c <= 'Z'; ++c) printf("%c ", c); return 0; }
Similar questions