Computer Science, asked by chaitrareddyn393, 1 month ago

What can be inserted at “// Replace here” so that the below function is ill perform same task as before

void similar(int a, int b)
{
int sum;
sum = a + ~b + 1; // Repalce here
Printf(“sum of two integers: %d”, sum);
}

Answers

Answered by jaisudhan0707
0

Answer:

sum = a+b+2 two integers

Explanation:

Similar questions