#include int compute(int x) { return 10 + 4 * x; } int main(void) { int x = 10 * 12; printf("Printing something: %d\n", compute(x)); return 0; }