Naming conventions used for variables and functions in C
Posted
by
Zel
on Programmers
See other posts from Programmers
or by Zel
Published on 2013-06-28T18:36:43Z
Indexed on
2013/06/28
22:28 UTC
Read the original article
Hit count: 297
While coding a large project in C I came upon a problem. If I keep on writing more code then there will be a time when it will be difficult for me to organize the code. I mean that the naming for functions and variables for different parts of the program may seem to be mixed up.
So I was thinking whether there are useful naming conventions that I can use for C variables and functions?
Most languages suggest a naming convention. But for C the only thing I have read so far is the names should be descriptive for code readability.
EDIT:
Examples of some examples of suggested naming conventions:
I read some more naming conventions for java somewhere but couldn't remember where.
© Programmers or respective owner