Welcome

Hi! This blog is for beginners of c++ and java .You can check and pick codes for your programming assignments. This will also help you to understand the concepts of these programming languages. Its all about programming.

Loops practise(ASCII CODE RETURN)

Thursday, May 19, 2011

#include<iostream.h>
void main()
{
int x=65;
char a;
a=x;
while(x<=122)
{
a=x;
cout<<"ASCII code of "<<a<<" is "<<x<<endl;
x++;
}
}