From 4fa27872aed627de9f0ef0a02ad5e22d5559a124 Mon Sep 17 00:00:00 2001 From: tirth7777777 <46481727+tirth7777777@users.noreply.github.com> Date: Sun, 17 Mar 2019 17:18:37 +0530 Subject: [PATCH] Fix #58 This commit will fix #58 --- src/lab/exp8/Theory.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lab/exp8/Theory.html b/src/lab/exp8/Theory.html index 7dd596b..1cf2ffe 100644 --- a/src/lab/exp8/Theory.html +++ b/src/lab/exp8/Theory.html @@ -100,7 +100,7 @@

<

Strings

-In C programming, a string is essentially an array of ASCII code 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 ASCII code 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:

 char str[50]={'C',' ','P','r','o','g','r','a','m'};