Thread: simple newb question

  1. #1
    Registered User
    Join Date
    Sep 2008
    Posts
    9

    simple newb question

    Ok in the first year of my ECE program and my parents want to check out some of my work. I just finished a program in c and want to email it to them. Their computer is running vista. My development computer is running xp and I compile my programs with visual studio 2008. What do I need to do to accomplish this? If its not worth the effort it would take let me know.

  2. #2
    and the Hat of Guessing tabstop's Avatar
    Join Date
    Nov 2007
    Posts
    14,336
    They're going to need the runtime libraries. If they happen to have VS installed themselves, then great. Otherwise you have two options (at least):
    1. Static linking, rather than linking to DLLs. Change the "runtime library" option in your project properties to /MT (under C/C++, code generation).
    2. Give them the redistributable libraries as well (I think they're called VCRedist or something similar).

  3. #3
    Registered User
    Join Date
    Sep 2008
    Posts
    9
    sweet thanks.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Simple class question
    By 99atlantic in forum C++ Programming
    Replies: 6
    Last Post: 04-20-2005, 11:41 PM
  2. Simple question about pausing program
    By Noid in forum C Programming
    Replies: 14
    Last Post: 04-02-2005, 09:46 AM
  3. simple question.
    By InvariantLoop in forum Windows Programming
    Replies: 4
    Last Post: 01-31-2005, 12:15 PM
  4. Binary Search Trees Part III
    By Prelude in forum A Brief History of Cprogramming.com
    Replies: 16
    Last Post: 10-02-2004, 03:00 PM
  5. simple fgets question
    By theweirdo in forum C Programming
    Replies: 7
    Last Post: 01-27-2002, 06:58 PM