Can you please help on this.
I have a C program where I am calling a void function.
[code]
void Read(int num, int (**param)) {
All the calculations.
}
[\code]
When executed, the code works fine inside the function, but it hangs when exiting.
Is there any reason to this.
I am working with C language under Visual Studio 2008.
We're likely going to need to see a bit more of your code to discover the problem. Consider stepping through the code with your debugger to see where it gets stuck.
PS: You put your slash the wrong way in the code tag ;)