Function and Type Casting
Functions
A function or a method is a peice of code which will perform certain task, it can take input and produce an output
Syntax
public static return_type function_name(datatype arg1, datatype arg2,....... datatype argn )
{
return value;
}
Ex...
kingbond470.hashnode.dev2 min read