I wonder if it is okay to comment methods in c just like you are commenting on Java code?
protected boolean myMethod(int x, int y) { return true; }
same thing in c
int myMethod(int x, int y) { return 1; }
Of course, before the programmer, but I would like to know if c-programers use these @param or not?
source share