Answer:
The difference between if and goto statements is:
If statements are conditional statements that tell a computer what to do with certain information. A good way to think of the if statement is as a true or false question. They ask the program if something is true,and tell it what to do next based on the answer.
And the goto statement is a jump statement which is sometimes also referred to as unconditional jump statement. The goto statement can be used to jump from anywhere to anywhere within a function.
Hope this help u☆