I always adhere to the existing coding rules of any language that I use, and I started making C recently. I noticed that some books display functions with a return value over the rest of the function signature, for example:
int foo(int bar) { ... ... ... }
I did not see this in other languages ββthat I used. Is this the standard way of representing C functions these days, or is it some old convention that is no longer used at all?
source share