I'm trying to learn C, then I'll learn C++. What I know now is some VB and QB.

I know that in QB, I could do something like

if a < b then goto AisSmaller

AisSmaller:
Print "A is smaller than B"
END

Is there anyway in C, to tell it to go to a specific place if a certain condition is TRUE? I know you can always evaluate a condition and then use brackets, but this could get repetive you know?