Write a program to fill the entire screen with a smiling face.
the smiling face has an ascii value 1.
Answers
Answered by
5
#include<stdio.h>
main()
{
int i, j;
for (i=1, j=1; j<=5000; j++)
{
printf("%c", i);
}
}
Answered by
1
A program to fill the entire screen with a smiling face.
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
int main()
{
int a, b;
for (a=1, b=1; b<=5000; b++)
{ printf("%c", '1'); }
}
Similar questions