Top "Naming-conventions" questions

Naming conventions refer to general rules governing names assigned to programming constructs such as variables and methods.

What is the standard naming convention for html/css ids and classes?

Does it depend on the platform you are using, or is there a common convention that most developers suggest/follow? …

html css naming-conventions standards
Naming convention - underscore in C++ and C# variables

It's common to see a _var variable name in a class field. What does the underscore mean? Is there a …

c# c++ naming-conventions
What is the javascript filename naming convention?

Should files be named something-with-hyphens.js, camelCased.js, or something else? I didn't find the answer to this question here.

javascript naming-conventions
JavaScript naming conventions

I know there is a lot of controversy (maybe not controversy, but arguments at least) about which naming convention is …

javascript naming-conventions
What's the name for hyphen-separated case?

This is PascalCase: SomeSymbol This is camelCase: someSymbol This is snake_case: some_symbol So my questions is whether there …

programming-languages naming-conventions terminology
What are the most common naming conventions in C?

What are the naming conventions commonly use in C? I know there are at least two: GNU / linux / K&…

c naming-conventions
Enum Naming Convention - Plural

I'm asking this question despite having read similar but not exactly what I want at C# naming convention for enum …

c# .net enums naming-conventions plural
What is the convention for word separator in Java package names?

How should one separate words in package names? Which of the following are correct? com.stackoverflow.my_package (underscore) com.…

java naming-conventions package
CFLAGS, CCFLAGS, CXXFLAGS - what exactly do these variables control?

I am using GNU make to compile my C++ code, and i would like to understand how to make my …

gcc naming-conventions makefile