by admin | May 23, 2015 | sem1
Projection of Cone Sample Problem1: Draw the projection of cone , base 30 mm diameter and axis 50 mm long , resting on HP on a point of its base circle with the axis making an angle of 45º with HP and parallel to VP. Steps for Projection of Cone : Simple Position: 1....
by admin | May 23, 2015 | cse
goto statement in c A goto statement in C programming language provides an unconditional jump from the goto to a labeled statement in the same function. NOTE: Use of goto statement is highly discouraged in any programming language because it makes difficult to trace...
by admin | May 23, 2015 | cse
continue statement in c The continue statement in C programming language works somewhat like the breakstatement. Instead of forcing termination, however, continue forces the next iteration of the loop to take place, skipping any code in between. For the for loop,...
by admin | May 23, 2015 | cse
break statement in c The break statement in C programming language has the following two usages: When the break statement is encountered inside a loop, the loop is immediately terminated and program control resumes at the next statement following the loop. It can be...
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...