forked from NafiGit/C-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStructuredProgramming.html
More file actions
81 lines (75 loc) · 3.82 KB
/
StructuredProgramming.html
File metadata and controls
81 lines (75 loc) · 3.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CO-1</title>
<link rel="stylesheet" href="StructuredProgramming.css">
</head>
<body>
<div class="container">
<div class="navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Trainer</a></li>
<li><a href="syllabus.html">Syllabus</a></li>
<li><a href="#">Exams prep</a></li>
<li><a href="#">Programs</a></li>
</ul>
</div>
<p id="one">CO-1 Course Outcome: </p>
<p>
<div class="contents">
<p id="three"> CO1 Contents at a glance</p>
<ol>
<li><a href="#">Structured Programming Paradign</a></li>
<li><a href="#">Designing Algorithms for Probleming solving</a></li>
<li><a href="Flowcharts.html">Designing Flow charts for Probleming solving</a></li>
<li><a href="DataTypes.html">Data Types</a></li>
<ol>
<li><a href="">int</a></li>
<li><a href="">int pointer</a></li>
<li><a href="">float</a></li>
<li><a href="">float pointer</a></li>
<li><a href="">char</a></li>
<li><a href="">char pointer</a></li>
<li><a href="">int array</a></li>
<li><a href="">float array</a></li>
<li><a href="">char array</a></li>
</ol>
<li><a href="">Operators</a></li>
<ol>
<li><a href="">Arithematic</a></li>
<li><a href="">Relational</a></li>
<li><a href="">Logical</a></li>
</ol>
<li><a href="">Modularization - Functions</a></li>
<li><a href="">Storage Classes</a></li>
<li><a href="">User input from console</a></li>
<li><a href="">User input from files</a></li>
<li><a href="conditionalStataments.html">Conditional Statements</a></li>
<ol>
<li><a href="">if</a></li>
<li><a href="">if-else</a></li>
<li><a href="">else if ladder</a></li>
<li><a href="">conditional operator</a></li>
<li><a href="">Nested if else</a></li>
<li><a href="">Switch case</a></li>
</ol>
</ol>
</div>
<div class="detailing">
<div class="box">
<h1>What is Structured Programming?</h1>
<p>Structured Programming is also known as Modular Programming. In this kind of approach, a complex problem is broken into sub-problems,so that program becomes easy test,debug,modify and maintain. Here each module or function acts as a sub-program. The main method of the program communicates with those functions/modules with the help of function calls in the main program.</p>
<p>In Structured Programming, the hieararchy of modules used will be having a single entry point and a single exit point, and in which control is passed downward through thr structure without unconditional branches to higher levels of the structure</p>
<p>Structured programming follows only top-down approach</p>
<p>In structured programming more importance is given to CODE rather than DATA. This kind of programming is less secure as their is node mode of hiding the data (no data abstraction)</p>
<p></p>
</div>
</div>
</p>
</body>
</html>