Dwcnmv,

Are you doing c/c++ now? I would suggest you to restrict from clubbing the languages(though C++ is from C, it is advanced). My suggestions for the above code:

a) for getting the ascii no. (in C itself) you could have used
printf("%d",inputChar[e])--prints the ascii char of the letter stored
if used as "%c" will show the character

b) From the efficiency point of view, you can use gets() function to store the text you enter. The gets() is very easy.

The URLs following can be useful:
www.cprogramming.com (a must mention as mentioned already)
www.programmersheaven.com
www.freeprogrammingresources.com
www.oopweb.com

Chokks.