C programming Interview questions and answers: while loop in c programming
while loop in c programming While loop: It is pre tested loop. It is used when we have to execute a part of code in unknown numbers of times. Syntax: while (Expression){Loop body} Properties of while loop: 1. Task of the expression is to check the conditi
www.cquestions.com |