Kamis, 17 Maret 2011

PROGRAM KONVERSI KARAKTER DESIMAL KE ASCII C++


#include <iostream.h>
#include <conio.h>
void main()
{
 clrscr();
 int tmp;
 for (;;)
 {
  tmp = getch();
  cout<<int(tmp)<<endl;
 }
}

Tidak ada komentar:

Posting Komentar