need help with a program

  • Thread starter Thread starter IsmaZ
  • Start date Start date
I

IsmaZ

hi!!!
i just started studyin programming so i m having small problems....
can any1 tell me how 2 write a program in vc++ to identify
palindromes...i cant get it to check digits other than ffirst nd last
 
IsmaZ said:
i just started studyin programming so i m having small problems....
can any1 tell me how 2 write a program in vc++ to identify
palindromes...i cant get it to check digits other than ffirst nd last

The best way to get help here is to post a _few_ lines of something that you
can not get to work. If you explain what you are trying to do, someone may
help you over the hard spots. Many here don't respond if they feel that to
answer might be the same as doing your homework for you.

That said, if you are using an array to address your word (if that's what
you have) then the character at position i (zero relative) is addressed as
array_name. If you are using a pointer, character #i may be adressed as
*(ptr + i).

Regards,
Will
 
Back
Top