Thread: is it a legal signature??

  1. #1
    Banned
    Join Date
    Oct 2008
    Posts
    1,535

    is it a legal signature??

    int getMin(int eof[],vote [],int *);

  2. #2
    Kernel hacker
    Join Date
    Jul 2007
    Location
    Farncombe, Surrey, England
    Posts
    15,677
    No. vote has no type.

    --
    Mats
    Compilers can produce warnings - make the compiler programmers happy: Use them!
    Please don't PM me for help - and no, I don't do help over instant messengers.

  3. #3
    Registered User
    Join Date
    Oct 2008
    Posts
    1,262
    Quote Originally Posted by matsp View Post
    No. vote has no type.

    --
    Mats
    Unless vote is a type, I think. Then it is legal.

  4. #4
    Kernel hacker
    Join Date
    Jul 2007
    Location
    Farncombe, Surrey, England
    Posts
    15,677
    Quote Originally Posted by EVOEx View Post
    Unless vote is a type, I think. Then it is legal.
    True.

    --
    Mats
    Compilers can produce warnings - make the compiler programmers happy: Use them!
    Please don't PM me for help - and no, I don't do help over instant messengers.

  5. #5
    Banned
    Join Date
    Oct 2008
    Posts
    1,535
    vote is a type
    but how to use the parameter of type vote
    if there is no name

  6. #6
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    Give the parameter a name in the function definition.
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  7. #7
    DESTINY BEN10's Avatar
    Join Date
    Jul 2008
    Location
    in front of my computer
    Posts
    804
    Quote Originally Posted by transgalactic2 View Post
    vote is a type
    but how to use the parameter of type vote
    if there is no name
    you can use typedef.for eg
    Code:
    typedef int vote;
    then use vote as an int.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Forum signature banners
    By Akkernight in forum A Brief History of Cprogramming.com
    Replies: 18
    Last Post: 04-04-2009, 03:31 AM
  2. What is legal and what is illegal?
    By dlwlsdn in forum C Programming
    Replies: 3
    Last Post: 11-14-2008, 12:48 PM
  3. Signature Image - 'Invalid File'
    By Tonto in forum A Brief History of Cprogramming.com
    Replies: 4
    Last Post: 04-16-2007, 10:32 PM
  4. Limitless signature?
    By zahid in forum A Brief History of Cprogramming.com
    Replies: 21
    Last Post: 12-30-2002, 10:32 PM