-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
214 lines (192 loc) · 12.2 KB
/
blog.html
File metadata and controls
214 lines (192 loc) · 12.2 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>CodingElite</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark navm">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">CodingElite</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link " aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active " href="/codingelite.org/blog.html">Blog</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
C Tutorials
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="/codingelite.org/introduction.html">introduction</a></li>
<li><a class="dropdown-item" href="/codingelite.org/branching.html">Branching Statements</a></li>
<li><a class="dropdown-item" href="/codingelite.org/looping.html">looping statements</a></li>
<li><a class="dropdown-item" href="/codingelite.org/function.html">Function</a></li>
<li><a class="dropdown-item" href="/codingelite.org/array.html">Array</a></li>
<li><a class="dropdown-item" href="/codingelite.org/string.html">string</a></li>
<li><a class="dropdown-item" href="/codingelite.org/pointer.html">pointers</a></li>
<li><a class="dropdown-item" href="/codingelite.org/structure.html">structures</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="/codingelite.org/blog.html">More Topics</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="/codingelite.org/book.html">Books</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/codingelite.org/about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/codingelite.org/contact.html">Contact us</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="bg-light"> <div class="container ">
<div class="row headi-m">
<div class="headi bg-c">
<h1 class="headi-h2"><b>CodingElite</b></h1>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="post bg-c ">
<h2><b>What is C programming?</b></h2>
<h5>About C, 31 jan, 2021</h5>
<h6><b>Introduction and history of c</b></h6>
<p>C programming is considered as the base for other programming languages, thats why it is known as "mother
language".C is a middle-level procedure oriented programming language, used in ... <a href="/codingelite.org/PT1_WhatC.html">Continue Reading</a></p>
</div>
</div>
<div class="col-md-6">
<div class="post bg-c">
<h2><b>Difference between C and C++</b></h2>
<h5>01 Feb, 2021</h5>
<p>1 C is a structural or procedural programming language and does not support classes and objects.C++ is a combination of both procedural and object-oriented programming languages. 2 C is middle level programing language.C++ is high level programing language.....<a href="/codingelite.org
/PT2_diff.html">Continue Reading</a> </p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="post bg-c ">
<h2><b>Advantages and disadvantages of array.</b></h2>
<h5>Array, 02 Feb, 2021</h5>
<p>1 Array represent multiple data elements of the same type using a single name.Different data type could not be stored in an array. 2 In arrays, the elements can be accessed randomly by using the index number.It has a single fixed size. 3 Array consist of .......<a href="/codingelite.org
/PT3_advArray.html">Continue Reading</a>
</div>
</div>
<div class="col-md-6">
<div class="post bg-c ">
<h2><b>Application of C programming</b></h2>
<h6><b>Various Real World Application of C.</b></h6>
<h5>03 Feb, 2021</h5>
<p>Operating system.- The first operating system to be developed using a high-level programming language was UNIX, which was designed in the C programming language.. ......<a href="/codingelite.org
/PT4_appli.html">Continue Reading</a> </p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="post bg-c ">
<h2><b>Which compilers used for C programing?</b></h2>
<h5>Compiler for C, 04 Feb, 2021</h5>
<p> C compiler- A compiler for programs written in C. compiling program, compiler - (computer science) a program that decodes instructions written in a higher order language and produces an assembly language program........<a href="/codingelite.org
/PT5I_compiler.html">Continue Reading</a>
</div>
</div>
<div class="col-md-6">
<div class="post bg-c ">
<h2 class="post6"><b>Top 2 Best Compilers for C language.</b></h2>
<h5>Mobile Compiler,05 Feb, 2021</h5>
<p>C4Droid-C4droid stands for "c for android" (or "c++ for android"). C4droid is not an online compiler, so it uses real binaries. this is the one most useful compiler and best compiler for the c language.It is not a online compiler. This compiler is available on play store. 2.Mobile C-Mobile C ......<a href="/codingelite.org
/PT5II_MCompiler.html">Continue Reading</a> </p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="post bg-c ">
<h2><b>Difference between 1-D array and 2-D array.</b></h2>
<h5>Array in C, 06 Feb, 2021</h5>
<p>1. A type of array that stores a collection of similar data type in a contiguous block of memory.A type of array that stores multiple data elements of the same type in table or matrix format. 2. Also called as single dimentional array.Also called as multi dimentional array.........<a href="/codingelite.org
/PT6_arrayDiff.html">Continue Reading</a>
</div>
</div>
<div class="col-md-6">
<div class="post bg-c ">
<h2 class="post6"><b>What is mean by character array?.</b></h2>
<h5>string in C, 07 Feb, 2021</h5>
<p>In C programming, character array means array of data type char. It is called as "string". A string is a sequence of characters terminated with a null character. Strings are one-dimensional array of type characters terminated by a null character '\0'. This null character indicates the end of the string. Strings are always enclosed by double quotes. Whereas,......<a href="/codingelite.org
/PT7_charArr.html">Continue Reading</a> </p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="post bg-c ">
<h2><b>Types of pointer.</b></h2>
<h5>Pointer in C, 08 Feb, 2021</h5>
<p>Pointers are used to access the variables directly by using their address Locations. The value has been
assigned to the variable gets stored in that particular memory location.There are Eight different types of pointers,
they are : 1.Null pointer-A pointer that is assigned NULL is called a "null pointer".The value of null pointer is .........<a href="/codingelite.org
/PT8_TypPointer.html">Continue Reading</a>
</div>
</div>
<div class="col-md-6">
<div class="post bg-c ">
<h2 ><b>File handling in C.</b></h2>
<h5>File handling in C, 09 Feb, 2021</h5>
<p>File Handling is the is the storing of data in a file using a program. In file handling, some function are used to handle the file.Functions of File Handling: 1.fopen()- It is used to opens new or already created file. 2.fclose()- It is used to closes the file. 3.fprintf()- It is used to write data into the file. 4.fputc()- It is uesd to writes a character into the file.......<a href="/codingelite.org
/PT9_FileFun.html">Continue Reading</a> </p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="post bg-c ">
<h2><b>Advantages and Disadvantages of C programming.</b></h2>
<h5>C language, 08 Feb, 2021</h5>
<p> 1.Powerful and efficient language.Concept of OOPs. 2.Portable language. Run-time checking. 3.Built-in function.Concept of namespace..........<a href="/codingelite.org
/PT10_AdvC.html">Continue Reading</a>
</div>
</div>
</div>
</div>
</div>
<footer class="page-footer font-small blue navbar-dark bg-light footer-ptt">
<div class="footer-copyright text-center py-3">
© Copyright 2021. All Right Reserved. | Designed by the <a href="/codingelite.org/about.html">CodingElite team</a>. |
<a class="color-b" href="/codingelite.org/privacyPolicy.html">Privacy policy</a> | <a class="color-b" href="/codingelite.org/contact.html">Contact us</a>
</div>
</footer>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js" integrity="sha384-q2kxQ16AaE6UbzuKqyBE9/u/KzioAlnx2maXQHiDX9d4/zp8Ok3f+M7DPm+Ib6IU" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.min.js" integrity="sha384-pQQkAEnwaBkjpqZ8RU1fF1AKtTcHJwFl3pblpTlHXybJjHpMYo79HY3hIi4NKxyj" crossorigin="anonymous"></script>
-->
</body>
</html>