You are viewing a single comment's thread. Return to all comments →
#include <stdio.h> int solveMeFirst(int a, int b) { return a + b; } int main() { int num1,num2; scanf("%d %d",&num1,&num2); int sum; sum = solveMeFirst(num1,num2); printf("%d",sum); return 0; }
Seems like cookies are disabled on this browser, please enable them to open this website
Solve Me First
You are viewing a single comment's thread. Return to all comments →