Our coding standards for C include various prefixes for data types, constants, static/global variables, and pointers. These prefixes were originally introduced for code review purposes, but with the convenience of modern IDEs, which provide type information through highlighting, we are questioning whether it is still a best practice to use these prefixes in variable and type names. Additionally, the accumulation of prefixes for pointers can make naming confusing and affect the order of elements in variable names. What are your thoughts on the continued relevance of these prefixes in C programming standards?
Asked
Active
Viewed 58 times