Thread: bulid a link in C++

  1. #1
    Registered User
    Join Date
    Sep 2001
    Posts
    173

    bulid a link in C++

    hi guys:
    is it possible to create a link in C++ programming, like web links. like on the web.
    Don't laugh at me,I am just a SuperNewbie.

  2. #2
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    This question sounds surprisingly similar. Don't cross-post. And to answer your question, yes.

    -Prelude
    My best code is written with the delete key.

  3. #3
    Registered User
    Join Date
    Sep 2001
    Posts
    173
    sorry about that, so what is the syntax then?
    Don't laugh at me,I am just a SuperNewbie.

  4. #4
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    No C++ required


    [code]


    char *Make_Link( char *target, char *text )
    {
    char link_template[] = "<a href =\"%s\"">%s</a>";

    char link[500];

    sprintf( link, link_template, target, text );

    char new_link = new char[strlen(link) + 1];

    return strcpy(new_link, link);
    }




    int main()
    {
    char target[] = "showthread.php? =&threadid=21668&goto=nextnewest";

    char text[] = "Next Thread";

    char *link = Make_Link( target, text );

    //...do something...

    delete [] link;

    return 0;
    }


    [code]
    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;
    }

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Linked List, Please Help!
    By CodeMonkeyZ in forum C Programming
    Replies: 5
    Last Post: 02-17-2009, 06:23 AM
  2. I'm confused about link lists (again)
    By JFonseka in forum C Programming
    Replies: 4
    Last Post: 06-13-2008, 08:13 PM
  3. Function to check memory left from malloc and free?
    By Lechx in forum C Programming
    Replies: 4
    Last Post: 04-24-2006, 05:45 AM
  4. Link Error
    By Luigi in forum C++ Programming
    Replies: 1
    Last Post: 04-12-2004, 07:12 PM
  5. Request for comments
    By Prelude in forum A Brief History of Cprogramming.com
    Replies: 15
    Last Post: 01-02-2004, 10:33 AM