Thread: Pointer to String

  1. #1
    Registered User
    Join Date
    Apr 2012
    Posts
    5

    Pointer to String

    I'm getting started with c and i have the following question:

    Within main()
    Code:
    char string[] = "Hallo World";
    function(string);
    
    void function(char *str)
    {
        printf("%s\n",str);
        char *ptr = str + 5;
        *ptr = '-';
        printf("%s\n",str);
    }
    Output:
    Hallo World
    Hallo-World

    Why does the program doesn't work if i'm defining:
    char *string = "Hallo World";

  2. #2
    Registered User
    Join Date
    Aug 2005
    Location
    Austria
    Posts
    1,990
    Why does the program doesn't work if i'm defining:
    char *string = "Hallo World";
    This defines str as a string literal, a string constant. The copiler puts it into read only memory.
    Kurt

  3. #3
    Registered User
    Join Date
    Apr 2012
    Posts
    5
    Thanks for the fast answer! But why the keyword "const" is not required? It seems that char* implicitly declares as const, same as const char[] ="Hallo World", and const char* = "Hello World" doesn't make sense then.

  4. #4
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    Quote Originally Posted by tinu73
    But why the keyword "const" is not required?
    Because there was a time where string literals existed but the const keyword did not, and the powers that be decided that allowing a string literal to be assigned to/to initialise a char* was the right choice, perhaps for backward compatibility.

    Quote Originally Posted by tinu73
    It seems that char* implicitly declares as const
    It doesn't.
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  5. #5
    Registered User
    Join Date
    Aug 2005
    Location
    Austria
    Posts
    1,990
    I don't remember exactly. It's some backwards compatibility issue.
    Kurt

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 3
    Last Post: 01-15-2012, 06:09 AM
  2. How do I add to a pointer string?
    By scarlet00014 in forum C Programming
    Replies: 9
    Last Post: 10-15-2008, 01:21 PM
  3. string vector to string pointer manipulation
    By stanlvw in forum C++ Programming
    Replies: 11
    Last Post: 07-16-2008, 01:43 AM
  4. pointer to string.
    By cstudent in forum C Programming
    Replies: 6
    Last Post: 04-22-2008, 02:51 AM
  5. Pointer to String and Pointer to Char
    By vb.bajpai in forum C Programming
    Replies: 3
    Last Post: 06-15-2007, 03:03 PM

Tags for this Thread