From cc517765ba38ed66a330300ad6466eb06004f0e3 Mon Sep 17 00:00:00 2001 From: WongChinWee <93850449+WongChinWee@users.noreply.github.com> Date: Sun, 3 Apr 2022 22:09:16 +0800 Subject: [PATCH] Update exercise2.c --- exercise2.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/exercise2.c b/exercise2.c index 1c28eb7..2bac908 100644 --- a/exercise2.c +++ b/exercise2.c @@ -9,11 +9,18 @@ //main function section int main(){ + char myName[1] = 'Wong'; + + //write here your program + printf("My Name is %c, Bachelor of Information Technology from Universiti Malaysia Kelantan", myName[1]); + + return 0; } -//user-defined section \ No newline at end of file +//user-defined section +