Skip to content

Commit c1877dd

Browse files
Update quiz.html
1 parent 7a338bf commit c1877dd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

quiz.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ <h3>Quiz Questions</h3>
501501

502502
<div class="form-group no-select">
503503
<p><strong>2. What will be the output of the following code snippet?</strong></p>
504-
<pre class="code-block"><code>#include <stdio.h>
504+
<pre class="code-block"><code>#include &lt;stdio.h&gt;
505505

506506
int main() {
507507
FILE *fp;
@@ -525,7 +525,7 @@ <h3>Quiz Questions</h3>
525525

526526
<div class="form-group no-select">
527527
<p><strong>3. What might happen when the following C program is executed?</strong></p>
528-
<pre class="code-block"><code>#include <stdio.h>
528+
<pre class="code-block"><code>#include &lt;stdio.h&gt;
529529

530530
int main() {
531531
FILE *fptr;
@@ -577,8 +577,8 @@ <h3>Quiz Questions</h3>
577577

578578
<div class="form-group no-select">
579579
<p><strong>5. What is the purpose of the `fprintf` function in `writeStudentToFile()`?</strong></p>
580-
<pre class="code-block"><code>#include <stdio.h>
581-
#include <string.h>
580+
<pre class="code-block"><code>#include &lt;stdio.h&gt;
581+
#include &lt;string.h&gt;
582582

583583
struct Student {
584584
int id;

0 commit comments

Comments
 (0)