Write a program to fill the enter screen with a smiling face the smiling face has an ASCII value 1?

1 answer

Answer

1080975

2026-05-08 07:20

+ Follow

#include<stdio.h>

#include<conio.h>

void main()

{

int a=1;

clrscr();

for(a=1;a<=47*(80);a++)

{

printf("%c",1);

}

getch();

}

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.