A Developer Gateway To IT World...

Techie Uncle Software Testing Core Java Java Spring C Programming Operating System HTML 5 Java 8 ES6 Project

concept of method decleration

//method decleration

class two
{
    void m1()
    {
        int a=10,b=10;
        System.out.println("hello");
        System.out.println(a+b);
    }
    public static void main(String args[])
    {
        two t=new two();
        t.m1();
    }

}


Output:



LEARN TUTORIALS

.

.