// Type your code here, or load an example. f square(int num) { return num * num; } f main() { printf("Square of %d is %d\n", 12, square(12)); }