Skip to content

Instantly share code, notes, and snippets.

@arpitbbhayani
Created February 7, 2020 06:25
Show Gist options
  • Save arpitbbhayani/df0307554608de2e40c15be80c918f80 to your computer and use it in GitHub Desktop.
Save arpitbbhayani/df0307554608de2e40c15be80c918f80 to your computer and use it in GitHub Desktop.
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