HomeC Logical ProgramsC program for ASCII equivalents of lower case alphabets January 8, 2021 No Comments C program for ASCII equivalents of lower case alphabets Previous Next #include <stdio.h> int main() { char x ; for(x='a' ; x<='z' ; x++) { printf("%c : %d \n", x, x); } return 0; } Previous Next Related Posts ASCII in C Add Comment Cancel Reply Save my name, email, and website in this browser for the next time I comment.