Quantcast
Channel: Geekyard » Developers
Viewing all articles
Browse latest Browse all 10

C Code To Display List Of ASCII Characters

$
0
0

ASCII Characters

Don’t know which number represents your favorite ASCII character????
This tiny, but useful, code is here to help you out!

// ASCIICHR.CPP
// ASCII Characters
// Created by Karthik Sampath on 3/3/2010.
// Copyright 2010, Karthik. All rights reserved.
// The copyright to the computer program(s) herein
// is the property of Karthik Sampath ,India. The
// program(s) may be used and/or copied only with the
// written permission of Karthik Sampath or in accordance
// with the terms and conditions stipulated in the
// agreement/contract under which the program(s) have
// been supplied. This copyright notice must not be
// removed.
// Published in www.geekyard.com
#include
#include
void main()
{
for(int p=0;p<500;p++)
{
printf(“\n%d %c”,p,p);
getch();
}
}

Happy discovering!!


Viewing all articles
Browse latest Browse all 10

Trending Articles