Submitted Questions

  • Explanation of static in c,c++,c#and core java.

    Please explain me the use of static in c,c++,c#and core java using in variable and method or function with its effects

    ALOK SHARMA

    • Jul 2nd, 2014

    In Java static is a keyword which provide the flexibility to use variables, method - declared as static, can be use in class without object of that object.
    Example of it is main method.

    nitin kale

    • Jun 5th, 2013

    If we declare variable static in c language then we can not change the value of that variable ,if we trying to change the value it throw the run time error."c ...