coding style - variables and functions naming convention in c applications -
coding style - variables and functions naming convention in c applications -
i have made c application using vs 2010 , have followed lowercase underscores naming convention variables , functions in application. asked follow camel case in entire application. want inquire whether right approach naming convention in c if yes there tool can convert variables , functions camel case in existing c application.
coding standards vary company company. mature companies have one, , there old code lying somewhere doesn't follow it.
as long coding done consistent style, know name of function checks if car-door open in application, whether called car_door_open
, cardooropen
, cardoorisopen
matters lot less. key consistency.
i'm not aware of tool can rename identifiers in code, modern ide's have "rename identifier", can helpful these type of things.
c coding-style
Comments
Post a Comment