The solidity fallback function is executed if none of the other functions match the function identifier or no data was provided with the function call.… Read More
Tag Archives: Solidity-Functions
The view functions are read-only function, which ensures that state variables cannot be modified after calling them. If the statements which modify state variables, emitting… Read More
A function is basically a group of code that can be reused anywhere in the program, which generally saves the excessive use of memory and… Read More