try this code instead:
$next_query = "select Answer
from $Table2
where Question_no = '$Qu_no'";
$next_result = mysql_query($next_query);
$Answer=mysql_result($next_result,0,"Answer");
if ($Answer == "C")
{
//process1
}
else
{
//process2
}
The first problem was in your sql query. the word after select should be the title of a field within the database.
The send thing is that $next_result doesn't really generate the exact field you want.. you have to assign the varialbe after the query with the line below i added.
$Answer=mysql_result($next_result,0,"Answer");
Lastly, as I mentioned above, "$next_result" doesn't work that way so you have to use the new variable you defined, "$Answer" to compare to "C" in your if statment.
hope this helps.
-mike