Thread: Buy programs

  1. #1
    Unregistered
    Guest

    Buy programs

    Anyone know where I can buy some relatively simple C programs?

  2. #2
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    It depends on what you want. If it's simple and common then you can find them for free, otherwise you might consider going to rent-a-coder and putting up a contract job for a small amount. Who knows, if you ask nicely enough then someone around here will write them for you as a learning experience.

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

  3. #3
    Registered User The Dog's Avatar
    Join Date
    May 2002
    Location
    Cape Town
    Posts
    788
    "buy"
    Umm, I'll advise to rather download source code from
    programming sites.

    Try : www.planet-source-code.com

  4. #4
    End Of Line Hammer's Avatar
    Join Date
    Apr 2002
    Posts
    6,231

    Re: Buy programs

    Originally posted by Unregistered
    Anyone know where I can buy some relatively simple C programs?
    Here's a freebie to get you started.
    Code:
    #include <stdio.h>
    
    int main(void)
    {
    	return 0;
    }
    When all else fails, read the instructions.
    If you're posting code, use code tags: [code] /* insert code here */ [/code]

  5. #5
    Banned master5001's Avatar
    Join Date
    Aug 2001
    Location
    Visalia, CA, USA
    Posts
    3,685
    Granted I've only been visiting the boards off and on for about a year and a half now, but I have never seen this question asked. Not even anything similar. I'm not suggesting that question is bad, I just wonder why you are so egar to spend money on something that you could have probably found somewhere for free. Ask enough people on the boards for source and you could eventually end up a program for everything you could think of.

  6. #6
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    Where's your spirit of capitalism?! <sheesh>
    Ahem. Yes, you can send requests to Precision Software Instruments where you can find ALL your software needs at affordable prices (...i am not joking, either! )
    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. Anyone view this forum on a Blackberry?
    By Sharke in forum A Brief History of Cprogramming.com
    Replies: 3
    Last Post: 06-09-2009, 04:02 PM
  2. Best Buy and late releases
    By VirtualAce in forum A Brief History of Cprogramming.com
    Replies: 23
    Last Post: 11-21-2008, 01:50 AM
  3. Recommend upgrade path for C programs
    By emanresu in forum C Programming
    Replies: 3
    Last Post: 11-22-2007, 07:32 AM
  4. POSIX/DOS programs?
    By nickname_changed in forum C++ Programming
    Replies: 1
    Last Post: 02-28-2003, 05:42 AM