What is the output of the c program?
#include stdio.h
int main() {
int result = (3 + 4) * (3 + 4) * (3 + 4);
printf("(3 + 4)^3 = %d\n", result);
return 0;
}


Posted on by