Created
February 7, 2020 06:25
-
-
Save arpitbbhayani/df0307554608de2e40c15be80c918f80 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int area(int length, int breadth) { | |
return length * breadth; | |
} | |
float area(int radius) { | |
return 3.14 * radius * radius; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment