Submitted Questions

  • Function and Method Differences

    what is the difference between function and method in C, Objective C, and JAVA?

    anil

    • Nov 23rd, 2012

    Functions have independent existence means they are defined outside of the class e.g. in C main() is a function while methods do not have independent existence they are always defined inside class e.g. main() in Java is called method.