سورس برنامه نمایش کد اسکی حروف انگلیسی در سی پلاس پلاس

# include <iostream.h>
# include <conio.h>
int main ()
  {
  char ch;
  int code;
  for (ch='A';ch<='Z';ch++)
  {
  code = ch;
  cout<<"ch= "<<ch<<"  code= "<<code<<endl;
  }
  for (ch='a';ch<='z';ch++)
  {
  code = ch;
  cout<<"ch= "<<ch<<"  code= "<<code<<endl;
  }
    cout<<endl;
    cout<<"paiane barnameie bedast avardane kode aski horofe english"<<endl;
   cout<<endl;
    cout<<"Programmer : Seyyed Reza Hashemian"<<endl;
   cout<<"Rasekhoon.net"<<endl;
    cout<<"good bye";
    getch();
    return 0;
  }