I am working with a function declaration of:
int func1(char *, unsigned int)
to the best of my understanding, I am not allowed to modify this. Now my question is that when I actually write this program what is the name of argument 1 and 2
for example
int intToHexStr(char *, unsigned int)
{
//how do I reference the first argument?
//and how do I reference the second argument?
}
Please help, thanks in advance!