#include int cube(int x); int main(void) { printf("cube(3) = %d\n", cube(3)); return 0; }