If the condition in a do-while loop is always true, the loop will run infinitely because there is nothing to stop the loop. Since the condition is checked after each iteration, the loop body will continue to execute, and as long as the condition remains true, the loop will never exit. Infinite loops are a common mistake in programming and can cause a program to hang or crash, consuming resources indefinitely.