You are on page 1of 1

// Practice3.cpp : This file contains the 'main' function.

Program execution begins


and ends there.
//

#include <iostream>
using namespace std;

int main()
{
cout << "=========================================================" << endl;
cout << "#\tWelcome to KT14303 Programming Principles!\t#" << endl;
cout << "#\t Faculty of Computing and Informatics,\t\t#" << endl;
cout << "#\t Universiti Malaysia Sabah.\t\t#" << endl;
cout << "=========================================================" << endl;
return 0;
}

You might also like