InterviewSolution
Saved Bookmarks
| 1. |
A c program to get sum of 2 numbers just help me guys. |
Answer» C0DE:#include int main() { int a = 69; int B = 31; printf("The sum of a and b is %d \n",a + b); RETURN 0; } 0UTPUTThe sum of a and b is 100 |
|