Example of C part 3 print small Alphabets
print small Alphabets
PROGRAM :
Output:
PROGRAM :
#include<stdio.h> main() { int i; for(i=97;i<=122;i++) { printf("%c",i); } printf("\n"); }