Computer Science, asked by venkateshvv, 9 hours ago

}
(11) #include <stdio.h>
#define CUBE(X) (X*X*X)
int main()
{
int a, b;
b = 3;
a = CUBE( ++b)/++b;
printf ("a = %d b = %d\n", a, b);
return 0;
}​

Answers

Answered by ArchBTW
0

Answer:

a = 21 b = 7

Explanation:

Please mark it as the brainliest

Similar questions