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 +