diff --git a/exercise2.c b/exercise2.c index 1c28eb7..5af4883 100644 --- a/exercise2.c +++ b/exercise2.c @@ -9,11 +9,18 @@ //main function section int main(){ + char myName[100] = {"Wong"}; + + //write here your program + printf("My Name is %s, Bachelor of Information Technology from Universiti Malaysia Kelantan", myName); + + return 0; } -//user-defined section \ No newline at end of file +//user-defined section +