Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I ....

Status
Not open for further replies.

jch02140

Programmer
Apr 3, 2003
6
HK
How do I show ASCII characters in Turbo C++ 3.0?
 
#include <conio.h>
#include <stdio.h>
void main ()
{
for (int i=0; i<256; i++)
printf (&quot;%c&quot;, i);
getch();
}




---LastCyborg---
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top