If we write a return statement in a function which has void as return type what happens? in java code example
Example: how to create a function that returns in java
// a method for computing the area of the rectangle
public int getArea() {
return width * height;
}