Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lab/exp8/Theory.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ <h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><
<!--edit -->
<h1 class="text-h2-lightblue">Strings</h1><div class="content" id="experiment-article-section-2-content">
<p>
In C programming, a string is essentially an array of <a href="en.wikipedia.org/wiki/ASCII">ASCII code</a> characters. Each character is stored by writing the corresponding 8-bit ASCII code of the character. So, One can initialize a string just like an array:
In C programming, a string is essentially an array of <a href="https://en.wikipedia.org/wiki/ASCII">ASCII code</a> characters. Each character is stored by writing the corresponding 8-bit ASCII code of the character. So, One can initialize a string just like an array:
</p>
<p><pre class="prettyprint lang-c">
char str[50]={'C',' ','P','r','o','g','r','a','m'};
Expand Down