Posts

Showing posts with the label while loop

Software Quality Assurance in software engineering

Image
Software Quality Assurance (SQA):-  SQA is a set of activity assuring quality in software engineering process. Altimetry result in quality in software products. It include a following activities:- Process definition & implementation Auditing  Training  SQA is a process that insure hat developed software needs & compiles with defined or standardized quality specification. SQA is an on going process with in the SDLC that routinely checks the developed software to insure its needs desired quality measured. SQA helps to insure the development of high quality software. SQA practices are implementation in most type of software development regardless of underline software development model are being used. In a border sense SQA incorporate an implement software testing methodology to test software. SQA process test for quality in each phase of development until the software is completed. SQA genially works on one or more industries standards that helps in building softwar...

Loop in C or C++ Language

Image
  Loop Construct:-  Repeat execution. Types of Loop:- for loop while loop do-while loop For loop in C A for loop is a more efficient loop structure in 'C' programming. The general structure of for loop syntax in C is as follows: Syntax of For Loop in C: for (initial value; condition; incrementation or decrementation ) { statements; } The initial value of the for loop is performed only once. The condition is a Boolean expression that tests and compares the counter to a fixed value after each iteration, stopping the for loop when false is returned. The incrementation/decrementation increases (or decreases) the counter by a set value. Do-While loop in C A do...while loop in C is similar to the while loop except that the condition is always executed after the body of a loop. It is also called an exit-controlled loop. Syntax of do while loop in C programming language is as follows: Syntax of Do-While Loop in C: do { statements } while (expression); As we saw in a while loop, ...