#include stdio.h
int main() {
int a = 3, b = 4;
int result = (a + b) * (a + b) * (a + b);
printf("(%d + %d)^3 = %d\n", a, b, result);
return 0;
}

What is the output of the c program

Posted on by