Thread: printing char* strings

  1. #1
    Registered User
    Join Date
    Sep 2004
    Posts
    16

    printing char* strings

    I'm trying to print a string stored in a char* variable. The contents are coming out correctly except that there's funny ASCII symbols printed at the end......

    Variable: char* temp;
    Reading: scanf("%s",&temp);
    Printing: printf("%s",&temp);

    What am I doing wrong?

  2. #2
    Registered User Azuth's Avatar
    Join Date
    Feb 2002
    Posts
    236
    Code:
    printf("%s",temp);
    Demonographic rhinology is not the only possible outcome, but why take the chance

  3. #3
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    >> What am I doing wrong?

    1) Variable: char* temp;

    temp doesn't point to any memory.

    2) Reading: scanf("%s",&temp);

    scanf("%s", temp);

    3) Printing: printf("%s",&temp);

    as Azuth said.
    Code:
    #include <cmath>
    #include <complex>
    bool euler_flip(bool value)
    {
        return std::pow
        (
            std::complex<float>(std::exp(1.0)), 
            std::complex<float>(0, 1) 
            * std::complex<float>(std::atan(1.0)
            *(1 << (value + 2)))
        ).real() < 0;
    }

  4. #4
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >char* temp;
    This is wrong. temp needs to point to addressable memory before you do anything with it. You can do so like this:
    Code:
    char *temp = malloc(15 * sizeof *temp);
    This allocates memory for 15 characters (14 content characters and the trailing null character since you want a string). Now you can move on to the next line.

    >scanf("%s",&temp);
    This is wrong. scanf always requires a pointer, but because temp is already a pointer, applying the address-of operator is not what you want to do. Also, %s will read any number of characters up to whitespace or EOF (or error), and copy them happily to the variable you give it. This is a problem if scanf reads more characters than you have space for. You can force %s to stop through a field width modifier:
    Code:
    scanf("%14s", temp);
    This reads (at most) 14 characters, and appends a null character when it's done. The reason I used 14 instead of 15 is to leave scanf one cell for the final character that makes the sequence of characters a string. Remember that strings are like this:
    Code:
    't', 'e', 's', 't', '\0'
    Even though the '\0' isn't used except as a sentinel, you still need to have space for it. Now that you've safely read a string, you can print it.

    >printf("%s",&temp);
    This is wrong. printf rarely needs the address-of operator for it's format modifiers, but conveniently enough, %s is one of them. The problem is that temp is already a pointer, just like with scanf. You need to remove the ampersand:
    Code:
    printf("%s\n", temp);
    Also notice that I put in a'\n' character at the end of the format string. This is because some systems may not flush the stream until later and the string may appear at an odd time. This is most noticeable in interactive prompts for input where the stream isn't flushed before the input request, so the user doesn't see it and has no idea what to do.

    A newline always causes the output stream to be flushed, as does a call to fflush. Be sure to remember that even if your system happens to do the right thing without them.
    My best code is written with the delete key.

  5. #5
    Registered User
    Join Date
    Sep 2004
    Posts
    16
    Thanks, got it working and I understand now!

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. printing strings
    By Tom_Arch in forum C Programming
    Replies: 4
    Last Post: 04-25-2009, 03:23 AM
  2. printing wide characters to strings...
    By davo666 in forum C Programming
    Replies: 1
    Last Post: 02-21-2009, 12:56 AM
  3. Reading strings input by the user...
    By Cmuppet in forum C Programming
    Replies: 13
    Last Post: 07-21-2004, 06:37 AM
  4. printing strings (was similar problem)
    By weirdbeardmt in forum C Programming
    Replies: 5
    Last Post: 06-01-2004, 01:12 PM
  5. printing an array of strings
    By linucksrox in forum C Programming
    Replies: 3
    Last Post: 05-11-2004, 03:31 PM