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

Add Comment

Courses Enquiry Form