Thread: help with c-string

  1. #1
    Registered User
    Join Date
    Dec 2003
    Posts
    4

    help with c-string

    i need some help with this string. I'm trying to print the string in reverse order without using pointers. I know it probably seems easy but I'm a first timer with this stuff. I want all the words and letter to print in reverse order. Example: "good day"
    in reverse: "yad doog". Here is my code so far. I have to call this funtion in my main.

    void reverse(char r[])
    {
    char temp[]=r;
    for (char i=0; r[i] != '\0'; i++)
    {
    while (r < i-1)
    {
    temp=--i;
    i=r;
    r++=temp;
    }
    }
    }
    Code:
    void reverse(char r[])

  2. #2
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,659
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. compare structures
    By lazyme in forum C++ Programming
    Replies: 15
    Last Post: 05-28-2009, 02:40 AM
  2. OOP Question DB Access Wrapper Classes
    By digioz in forum C# Programming
    Replies: 2
    Last Post: 09-07-2008, 04:30 PM
  3. Message class ** Need help befor 12am tonight**
    By TransformedBG in forum C++ Programming
    Replies: 1
    Last Post: 11-29-2006, 11:03 PM
  4. Classes inheretance problem...
    By NANO in forum C++ Programming
    Replies: 12
    Last Post: 12-09-2002, 03:23 PM
  5. Warnings, warnings, warnings?
    By spentdome in forum C Programming
    Replies: 25
    Last Post: 05-27-2002, 06:49 PM