From 8cae01c4d9b82922f09f25e138e1027416e4c6b9 Mon Sep 17 00:00:00 2001 From: WongChinWee <93850449+WongChinWee@users.noreply.github.com> Date: Sun, 3 Apr 2022 22:10:05 +0800 Subject: [PATCH] Update exercise3.c --- exercise3.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/exercise3.c b/exercise3.c index d2f87eb..3620bb7 100644 --- a/exercise3.c +++ b/exercise3.c @@ -9,11 +9,19 @@ //main function section int main(){ + //write here your program + int theValue[3][3] = {{10,100,20},{50,20,40},{40,40,10}}; + + scanf(" %d", theValue[2][3]); + + printf("Value from Row 2 and Column 3 is %d", theValue[2][3]); + + return 0; } -//user-defined section \ No newline at end of file +//user-defined section