Note: (Restricted functionality due to obvious reasons!)

For Mobile-Ease ⇓

Minimal Code ( Raw-View ) :
#include<iostream.h> #include<conio.h> void main() { char a[27]={'0','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'} ; int n; cout<<" Enter the numvers of alphabets to be printed : "; cin>>n; for(int i=1; i<=n; i++) {cout<<a[i]<<" ";} }