i do have 1 question
int function(...)
{
int x;
int q;
if (condition)
{
}
<-----is there a way to put a marker here...then use a pointer to store the address of the marker...right before the 2nd conditional statement in my code?
if (condition2)
{
}
return val;
}