by admin | May 23, 2015 | cse
nested loop in c C programming language allows to use one loop inside another loop. Following section shows few examples to illustrate the concept. Syntax: The syntax for a nested for loop statement in C is as follows: for ( init; condition; increment ) { for ( init;...
by admin | May 23, 2015 | cse
do while loop in c Unlike for and while loops, which test the loop condition at the top of the loop, thedo…while loop in C programming language checks its condition at the bottom of the loop. A do…while loop is similar to a while loop, except that a...
by admin | May 23, 2015 | sem1
Thermoplastic and Thermosetting Thermoplastic: A thermoplastic, or thermosoftening plastic, is a plastic material, polymer, that becomes pliable or moldable above a specific temperature and solidifies upon cooling. Most thermoplastics have a high molecular weight. The...
by admin | May 23, 2015 | cse
for loop in c A for loop is a repetition control structure that allows you to efficiently write a loop that needs to execute a specific number of times. Syntax: The syntax of a for loop in C programming language is: for ( init; condition; increment ) { statement(s); }...
by admin | May 23, 2015 | cse
while loop in c A while loop statement in C programming language repeatedly executes a target statement as long as a given condition is true. Syntax: The syntax of a while loop in C programming language is: while(condition) { statement(s); } Here, statement(s) may be...
by admin | May 23, 2015 | sem1
Natural and Synthetic Polymers There are two types of polymers: synthetic and natural. Synthetic polymers are derived from petroleum oil, and made by scientists and engineers. Examples of synthetic polymers include nylon, polyethylene, polyester, Teflon, and epoxy....