soln

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • darius

    #1

    soln

    itoa()

  • Artie Gold

    #2
    Re: soln

    darius wrote:[color=blue]
    > itoa()
    >[/color]
    No such thing in standard C.
    --ag

    --
    Artie Gold -- Austin, Texas
    http://it-matters.blogspot.com (new post 12/5)
    http://www.cafepress.com/goldsays

    Comment

    • Ben Pfaff

      #3
      Re: soln

      "darius" <ranveerkunal@g mail.com> writes:
      [color=blue]
      > itoa()[/color]

      Question?
      --
      "The fact that there is a holy war doesn't mean that one of the sides
      doesn't suck - usually both do..."
      --Alexander Viro

      Comment

      • Keith Thompson

        #4
        Re: soln

        "darius" <ranveerkunal@g mail.com> writes:[color=blue]
        > itoa()[/color]

        What is a function not defined in standard C and therefore off-topic
        in this newsgroup, Alex?

        --
        Keith Thompson (The_Other_Keit h) kst-u@mib.org <http://www.ghoti.net/~kst>
        San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
        We must do something. This is something. Therefore, we must do this.

        Comment

        • Mike Wahler

          #5
          Re: soln

          "darius" <ranveerkunal@g mail.com> wrote in message
          news:1113215642 .591715.293210@ g14g2000cwa.goo glegroups.com.. .[color=blue]
          > itoa()[/color]

          char itoa(char c)
          {
          return c == 'i' ? a : c;
          }

          -Mike


          Comment

          • Mike Wahler

            #6
            Re: soln


            "Mike Wahler" <mkwahler@mkwah ler.net> wrote in message
            news:xZY6e.5030 $An2.3755@newsr ead2.news.pas.e arthlink.net...[color=blue]
            > "darius" <ranveerkunal@g mail.com> wrote in message
            > news:1113215642 .591715.293210@ g14g2000cwa.goo glegroups.com.. .[color=green]
            >> itoa()[/color]
            >
            > char itoa(char c)
            > {
            > return c == 'i' ? a : c;[/color]

            return c == 'i' ? 'a' : c;
            [color=blue]
            > }[/color]

            -Mike


            Comment

            Working...