Search Results
| Search type | Search syntax |
|---|---|
| Tags | [tag] |
| Exact | "words here" |
| Author | user:1234 user:me (yours) |
| Score | score:3 (3+) score:0 (none) |
| Answers | answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
| Views | views:250 |
| Code | code:"if (foo != bar)" |
| Sections | title:apples body:"apples oranges" |
| URL | url:"*.example.com" |
| Saves | in:saves |
| Status | closed:yes duplicate:no migrated:no wiki:no |
| Types | is:question is:answer |
| Exclude | -[tag] -apples |
| For more details on advanced search visit our help page | |
Results tagged with coding-style
Search options not deleted user 2301
Coding style is a set of guidelines that helps readability and understanding of the source code.
11 votes
Is there a way to support different coding styles in a development team
No, you will need to define a coding standard (preferrably one which already exists) and have your developers adhere to it. Being a professional programmer means that you are able to adapt to whatever …
3 votes
Does studying other people's programs help in self growth?
Yes, definitely. Studying and understanding other peoples code is absolutely essential in order to grow as a programmer. In a general sense, it is always good to study and understand other peoples co …