View Single Post
Old May 8th, 2006, 9:56 AM   #2
Infinite Recursion
Programming Guru
 
Infinite Recursion's Avatar
 
Join Date: Jul 2004
Location: United States
Posts: 3,467
Rep Power: 8 Infinite Recursion is on a distinguished road
Send a message via MSN to Infinite Recursion Send a message via Yahoo to Infinite Recursion
#include <iostream>
#include <cctype>
 
using namespace std;
 
int main (void)
{
// use isdigit, isalpha, etc.
return 0;
}

Edited to remove the deprecated header. oops...
__________________
http://jasonpowers.net

"There are a thousand hacking at the branches of evil to one who is striking at the root."

Last edited by Infinite Recursion; May 8th, 2006 at 10:14 AM.
Infinite Recursion is offline   Reply With Quote