Thursday 18 July 2013


#include "stdafx.h"
#include "conio.h"
#include "iostream"
#include "stdio.h"

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
       int n=97;
       while(n<=122)
       {
       cout<<(char)n;
       n++;
       }
       getch();

}

0 comments :

Post a Comment