Thread: How do I export as exe not cpp?

  1. #1
    Registered User
    Join Date
    Jun 2003
    Posts
    22

    Question How do I export as exe not cpp?

    I have finished my program but i cant get it to save as an executable file, help would be greatly appreciated.

    Thanks,
    John

  2. #2
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    Compilers are quite useful for turning cpp files into exe's, John.
    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
    Registered User
    Join Date
    Jun 2003
    Posts
    22
    I am useing dev 5 beta and I cant get it to save it compiled. can you help me out.

    Thanks,
    John

  4. #4
    Registered User
    Join Date
    Jun 2003
    Posts
    22
    Got it,
    Thanks

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. run windows exe
    By munna_dude in forum Linux Programming
    Replies: 3
    Last Post: 10-10-2007, 01:12 AM
  2. how to run an exe command in c++ and get back the results?
    By mitilkhatoon in forum C++ Programming
    Replies: 5
    Last Post: 09-21-2006, 06:00 PM
  3. includein cpp file in a cpp file
    By sawer in forum C++ Programming
    Replies: 7
    Last Post: 06-15-2006, 12:34 PM
  4. Replies: 2
    Last Post: 04-09-2006, 07:20 PM
  5. Multiple Cpp Files
    By w4ck0z in forum C++ Programming
    Replies: 5
    Last Post: 11-14-2005, 02:41 PM