Need clarification on a function declaration

W

wizwx

what does the following mean?
int func2();

According to C++, it surely means func2 is a function that takes no
argument and returns an integer. But what about in C? Does it have the
same meaning or does it mean that func2 is a function that takes any
number of arguments and returns an integer?

Thanks for any clarification.
 
B

Ben Pfaff

wizwx said:
int func2();

According to C++, it surely means func2 is a function that takes no
argument and returns an integer. But what about in C? Does it have the
same meaning or does it mean that func2 is a function that takes any
number of arguments and returns an integer?

The latter is roughly true, with some limitations. For example,
the function cannot take a variable number of arguments and it
cannot have parameters of type "short" or "float" or other narrow
types.
 
W

wizwx

wizwx said:
int func2();
According to C++, it surely means func2 is a function that takes no
argument and returns an integer. But what about in C? Does it have the
same meaning or does it mean that func2 is a function that takes any
number of arguments and returns an integer?

The latter is roughly true, with some limitations. For example,
the function cannot take a variable number of arguments and it
cannot have parameters of type "short" or "float" or other narrow
types.
--
int main(void){char p[]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.\
\n",*q="kl BIcNBFr.NKEzjwCIxNJC";int i=sizeof p/2;char *strchr();int putchar(\
);while(*q){i+=strchr(p,*q++)-p;if(i>=(int)sizeof p)i-=sizeof p-1;putchar(p\
);}return 0;}


Will you please clarify what is a narrow type and what is not? Is long
a narrow type?
 
G

Guest

wizwx said:
Will you please clarify what is a narrow type and what is not? Is long
a narrow type?

The integer types smaller than (signed or unsigned) int, and float,
count as narrow types here. Integer types exactly as large as (signed
or unsigned) int may or may not, depending on the implementation. And
all other types don't.
 
M

Malcolm McLean

wizwx said:
what does the following mean?
int func2();

According to C++, it surely means func2 is a function that takes no
argument and returns an integer. But what about in C? Does it have the
same meaning or does it mean that func2 is a function that takes any
number of arguments and returns an integer?

Thanks for any clarification.
New C code should always have function prototypes. The return values of the
function and the arguments it takes should be specified expicitly.

However to avoid breaking old code, it is permitted to evade the system by
declaring a function with an empty, as opposed to void, parameter list. In
C++ this is not allowed.
If you've got to deal with code that uses empty parameter lists you are very
unfortunate. Almost certainly you can just ignore the whole issue.
Occasionally a sloppy programmer will write

func2();

when he means

int func2(void);

The difference is that if you call the first version with parameters, the
compiler won't flag an error.
 
K

Keith Thompson

Harald van Dijk said:
wizwx wrote: [...]
Will you please clarify what is a narrow type and what is not? Is long
a narrow type?

The integer types smaller than (signed or unsigned) int, and float,
count as narrow types here. Integer types exactly as large as (signed
or unsigned) int may or may not, depending on the implementation. And
all other types don't.

Specifically, char, signed char, unsigned char, short, and unsigned
short, and float are all narrow types. It's possible, for example,
for short and int to be the same width, but short is still a narrow
type even if so.

I don't think the standard uses the term "narrow type"; what's being
referred to is types that are affected by argument promotions.
 
G

Guest

Keith said:
Harald van Dijk said:
wizwx wrote: [...]
Will you please clarify what is a narrow type and what is not? Is long
a narrow type?

The integer types smaller than (signed or unsigned) int, and float,
count as narrow types here. Integer types exactly as large as (signed
or unsigned) int may or may not, depending on the implementation. And
all other types don't.

Specifically, char, signed char, unsigned char, short, and unsigned
short, and float are all narrow types.

As well as bool, and possibly extended integer types, which may be
made available via standard typedefs. For example, UINT_MAX ==
0x7FFFFFFF, and SIZE_MAX is 0xFFFF, then size_t must be a narrow type,
even if it is not a typedef for unsigned short (or char or unsigned
char). If UINT_MAX == 0xFFFF, and SIZE_MAX is too, then size_t may or
may not be a narrow type.
It's possible, for example,
for short and int to be the same width, but short is still a narrow
type even if so.

Thanks, I should've mentioned that.
I don't think the standard uses the term "narrow type"; what's being
referred to is types that are affected by argument promotions.

It indeed doesn't use that term. It talks about integer types with a
lower conversion rank than int, and adds float as a special case.
 
D

David T. Ashley

wizwx said:
Will you please clarify what is a narrow type and what is not? Is long
a narrow type?

In the old days, when men were men individual responsibility was a cherished
value, a good programmer could manage function parameters himself and
wouldn't rely on the compiler to spot errors.

int func();

meant that anything could be passed so long as one understood that the
compiler was going to promote all "narrow" types (char becomes int, float
becomes double, etc.). By "narrow" type, the original poster meant "a type
that is promoted to something else when put in the argument list".

However, as programmer skill declined and new standards emerged, it was
decided that:

int func(void);

would mean no parameters.

I don't believe in function prototypes or compiler warnings. They slow down
the compiler. I've calculated that a programmer who uses function
prototypes and compiler warnings may lose, over a lifetime of programming,
as much as 5 seconds due to the compiler processing the prototypes and
issuing the warnings.

However, if you want to do the stylish thing and use them, you should never
leave an argument list empty ...
 
C

CBFalconer

David T. Ashley said:
.... snip ...

I don't believe in function prototypes or compiler warnings. They
slow down the compiler. I've calculated that a programmer who
uses function prototypes and compiler warnings may lose, over a
lifetime of programming, as much as 5 seconds due to the compiler
processing the prototypes and issuing the warnings.

I was about to contradict you. Then I read the 3rd sentence.

--
<http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfocus.com/columnists/423>

"A man who is right every time is not likely to do very much."
-- Francis Crick, co-discover of DNA
"There is nothing more amazing than stupidity in action."
-- Thomas Matthews
 
D

David T. Ashley

CBFalconer said:
I was about to contradict you. Then I read the 3rd sentence.

Well, the losses cited above are just the "first-tier" losses. There is
also:

a)Lost time typing the function prototypes into a text editor.

b)Lost time printing the function prototypes (as well as toner and paper).

c)Extra disk space consumed in version control systems.

d)Etc.

Function prototypes are really a dangerous practice.

I'm actually writing a new book about needless caution and worthless safety
devices. Other things I don't believe in:

a)Condoms.

b)Automobile safety belts and airbags.

c)Swimming pool lifeguards.

d)Safety rails on balconies and so forth.

e)Insurance.

It really is a slippery slope. Once you start believing that you might make
a mistake or that something unforeseen might occur, you just spend lots of
unnecessary money. The economic losses from this type of defective thinking
are staggering. A typical consumer is probably paying $2,000 more per car
for this kind of silliness.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,013
Latest member
KatriceSwa

Latest Threads

Top