I have a pointer which points to a function. I would like to:
if (mode == 0)
{
const unsigned char *packet = read_serial_packet(src, &len);
} else {
const unsigned char *packet = read_network_packet(fd, &len);
}
But I cannot do it because my compiler complains when I first use the pointer later in the code.
error: 'packet' undeclared (first use in this function)
This is strange. It worked without the if statement, but now I need my program to be able to get data from different sources. Isn't it possible to do this? I think so. If it isn't, is there any other simple way to get what I am trying?
Thanks a lot.

constis to place it near the variable name but on the correct side of the star.. i.e.unsigned char const *packetis read as "pointer to const unsigned char". Where asunsigned char * const packetis read as "constant pointer to unsigned char". If you read backwards through the line it is easy to remember what type of pointer you have. – PP. Mar 21 '10 at 18:42