Thermoplastic and Thermosetting

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...

for loop in c

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); }...

while loop in c

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...

Natural and Synthetic Polymers

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....

Pointer to an array in c

Pointer to an array in c It is most likely that you would not understand this chapter until you are through the chapter related to Pointers in C. So assuming you have bit understanding on pointers in C programming language, let us start: An array name is a constant...

Return array from a function in c

Return array from a function in c C programming language does not allow to return an entire array as an argument to a function. However, you can return a pointer to an array by specifying the array’s name without an index. You will study pointer in next chapter...