ReTuRn("December"); // this is a function call
return("December"); // this is a return statement
Don't make a return statement look like a function call.
Quote:
You can write a C program on one line by removing those unnecessary end of line characters but that is not a good idea either.
Yes, but it makes the code less readable. Changing return("December");
to return "December";
improves the readability. You may argue it doesn't make a difference, but it does. Your Brain needs a little more power to decode the text on the screen. (Even the C-compiler needs some microseconds more) It's a good exercise for a developer to go down the rabbit hole...
return ((((0)))); // valid code, but stupid
return ((0)); // still stupid
return 0; // that's the way to go