Find expert advice and community support for all your questions on IDNLearn.com. Join our Q&A platform to access reliable and detailed answers from experts in various fields.

x = int(input ("Enter a value: "))

c = 0

sum = 0

What of the following best describe the loop?
while (x != 0):

x = int(input ("Enter a value: "))

c = c + 1

sum = sum + x

print ("\n\nSum: " + str(sum))