Thread: Help passing arguments to function

  1. #1
    Registered User
    Join Date
    Sep 2005
    Posts
    92

    Help passing arguments to function

    Hello

    I'am writing a program and within the program there are several functions. My problem is that a function of mine called Sell() requires 5 arguments to be passed to it. But 2 of these arguments are calculated in function main() and the other 3 are calculated in function Purchase().

    How can I get around this problem?

  2. #2
    C++まいる!Cをこわせ!
    Join Date
    Oct 2007
    Location
    Inside my computer
    Posts
    24,654
    Declare your arguments in main, pass them to Purchase to work with and then pass them to Sell.

  3. #3
    Deathray Engineer MacGyver's Avatar
    Join Date
    Mar 2007
    Posts
    3,210
    Come up with a better design if you can't match the parameters.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Beginner Needs help in Dev-C++
    By Korrupt Lawz in forum C++ Programming
    Replies: 20
    Last Post: 09-28-2010, 01:17 AM
  2. Getting an error with OpenGL: collect2: ld returned 1 exit status
    By Lorgon Jortle in forum C++ Programming
    Replies: 6
    Last Post: 05-08-2009, 08:18 PM
  3. In over my head
    By Shelnutt2 in forum C Programming
    Replies: 1
    Last Post: 07-08-2008, 06:54 PM
  4. Passing arguments to another function
    By Wiretron in forum C Programming
    Replies: 2
    Last Post: 12-24-2006, 05:57 AM
  5. passing counters between function
    By BungleSpice in forum C Programming
    Replies: 18
    Last Post: 02-21-2004, 06:16 PM