I know that we can use comments to refer to e.g. methods in java
(see this).
Is this option available in c
too? Lots of time while commenting, for example, I have a bug that is handled after 10 lines. How can I say to the other developer: "Do not handle it. It's handled on the next 'if()' block"?
int main(){
int x = 10;
printf("x = %d\n", x); //don't check if x is more than 18. We will check it in another "if"
//bla bla bla
//...
if(x >= 18)
printf("OK we can submit you\n");
else {
printf("No. You're too young\n");
return 1;
}
}