Computer Science, asked by TbiaSamishta, 1 year ago

Fill the blank in the following program so that the macro func and function func can be distinguished without any ambiguity. #include int func(int, int); #define func(x, y) x / y + x int main() { int i, j; scanf("%d", &i); scanf("%d", &j); printf("%d ", func(i + j, 3)); ----------------------------------- // fill in the blanks printf("%d\n", func(i + j, 3)); } //End main() int func(int x, int y) { return y / x + y; }

Answers

Answered by Neeraj723
0
Hii dear here is your answer


option b is the correct answer

Hope it's help u
Answered by Anonymous
23
Hope ur answer is

Option (B)

Hope it helps u
Similar questions