Write a program that creates three integers and passes them to the cat function, and print out the integers both before and after calling the function.
then write a function called dog, the dog function should produce the behavior of cat.
This is what I have, but it is not working.
First:
cat does not have a body so you will get a linker error from that.
Second:
in your main a, b and c don't live any where you need to initialize(make them a var) first. when passing the pointer to a, b and c you use the &to get the address of it.