Tag: C coding standard

  • Important coding standard

    To day I will go through about coding standard which we must have to follow during development . 1.Pascal casingĀ  should have to follow in Class & Method naming example : public class TestClass{}; public void TestMethod(){}; 2.Camel casing should have to follow in writing and local variable and parameter. example : int localCounter;public void […]