add 5 and 10, then return them
t add(int a, int b) { return a + b; } int main() { int a = add(1, 2); return 0; } A: The problem is that you are using the wrong operator. You are using the assignment operator (=) instead of the equality operator (==). The assignment operator will assign the value of the right