Hacker Rank Solutions In C Language | | C programming Language
Complete the function solve Me First to compute the sum of two integers.
Function prototype:
int solveMeFirst(int x, int y);
where,
- x is the first integer input.
- y is the second integer input
Return values
- sum of the above two integers
Sample Input
x = 2
y = 3
Sample Output
5
Comments :
Post a Comment