Thread: My C++ book

  1. #1
    Normal vector Carlos's Avatar
    Join Date
    Sep 2001
    Location
    Budapest
    Posts
    463

    My C++ book

    Hi,
    just finished my C++ book, and I'd like to thank you who helped me with ideas!

    Have a nice code!

  2. #2
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    Quote Originally Posted by Carlos
    Hi,
    just finished my C++ book, and I'd like to thank you who helped me with ideas!

    Have a nice code!
    Congradulations - I've been anticipating this book's release, too. You forgot to mention the name of the book and where it can be found, though - that would certainly help market it, you know. I also noticed that your site was in Hungarian - do you have an english version of it?

    Anyhow, good luck with your venture!
    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;
    }

  3. #3
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >I also noticed that your site was in Hungarian - do you have an english version of it?
    Click on the link that says "english version".
    My best code is written with the delete key.

  4. #4
    Registered User
    Join Date
    Dec 2003
    Posts
    167
    hmmm where's the book? links?
    silk.odyssey

  5. #5
    Normal vector Carlos's Avatar
    Join Date
    Sep 2001
    Location
    Budapest
    Posts
    463
    Quote Originally Posted by Sebastiani
    Anyhow, good luck with your venture!
    Thank you! The book is currently at the editor, it will be published in autumn. It will appear in hungarian, if there will be english translations, I'll let you know.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. URGENT: Help wanted...in C
    By iamjimjohn in forum C Programming
    Replies: 16
    Last Post: 05-18-2007, 05:46 AM
  2. Books on C and C++
    By kermi3 in forum A Brief History of Cprogramming.com
    Replies: 16
    Last Post: 10-28-2002, 04:18 PM
  3. Newbie - MFC code from a book in VC++.Net
    By Guardian in forum Windows Programming
    Replies: 2
    Last Post: 04-27-2002, 07:17 PM
  4. C++: Reference Book, GUI, Networking & Beyond
    By kuphryn in forum C++ Programming
    Replies: 4
    Last Post: 11-10-2001, 08:03 PM