Concept:
Structured programming
Headline
A programming paradigm focusing on the use of data structures, subroutines, blocks and loops.
Illustration
Take for example this unstructured version of calculating the factorial in Language:C:
unsigned long
unstructuredFactorial(unsigned long f)
{
unsigned long result = 1;
AGAIN:
if (f == 0) return result;
result *= f--;
goto AGAIN;
}
A structured programming version of that would be to use a loop instead of goto and exit the subroutine at the end instead of the middle:
unsigned long
structuredFactorial(unsigned long f)
{
unsigned long i, result = 1;
for (i = 1; i <= f; ++i)
result *= i;
return result;
}
User contributions
User edits
Syntax for editing wiki
For you are available next options:will make text bold.
will make text italic.
will make text underlined.
will make text striked.
will allow you to paste code headline into the page.
will allow you to link into the page.
will allow you to paste code with syntax highlight into the page. You will need to define used programming language.
will allow you to paste image into the page.
is list with bullets.
is list with numbers.
will allow your to insert slideshare presentation into the page. You need to copy link to presentation and insert it as parameter in this tag.
will allow your to insert youtube video into the page. You need to copy link to youtube page with video and insert it as parameter in this tag.
will allow your to insert code snippets from @worker.
Syntax for editing wiki
For you are available next options:will make text bold.
will make text italic.
will make text underlined.
will make text striked.
will allow you to paste code headline into the page.
will allow you to link into the page.
will allow you to paste code with syntax highlight into the page. You will need to define used programming language.
will allow you to paste image into the page.
is list with bullets.
is list with numbers.
will allow your to insert slideshare presentation into the page. You need to copy link to presentation and insert it as parameter in this tag.
will allow your to insert youtube video into the page. You need to copy link to youtube page with video and insert it as parameter in this tag.
will allow your to insert code snippets from @worker.