Well we all know K&R2 uses main() and not int main(). Also in K&R2, in
chapter 4.1, there is a definition of a function:
dummy() {}
and it is stated that if the returned type is omitted, int is used.
So I suppose in C90/C95
main() is equivalent to int main() right?
That is, the same stuff with C90/95 int variables where,
x= 7;
means int x= 7;
chapter 4.1, there is a definition of a function:
dummy() {}
and it is stated that if the returned type is omitted, int is used.
So I suppose in C90/C95
main() is equivalent to int main() right?
That is, the same stuff with C90/95 int variables where,
x= 7;
means int x= 7;
Comment