Write a program to fill the entire screen with a smiling face.The smiling face has an ASCII value 1. 06:11:00 – by Arslan Akram C++ Code #include<iostream> using namespace std; int main() { char a=1; int i=0; while (i<5000) { cout<<a; i++; } } Email ThisBlogThis!Share to XShare to Facebook