resolve else clause braces error

This commit is contained in:
Mann Mehta
2020-04-02 04:37:16 +05:30
parent 331fce2203
commit 085c6943a0

View File

@@ -16,8 +16,7 @@ int binExpo(int a, int b) {
int res = binExpo(a, b/2);
if (b%2) {
return res*res*a;
}
else {
} else {
return res*res;
}
}