answersLogoWhite

0


Best Answer

#include<stdio.h>

#include<conio.h>

void main()

{

int a=1;

clrscr();

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

{

printf("%c",1);

}

getch();

}

User Avatar

Wiki User

10y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

#include<stdio.h>

void main (void)

{

int i=1,j;

for(j=1;j<=5015;j++)

{

printf("%c ",i);

}

getch();

}

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

This is not a question it is a homework assignment and therefore inappropriate on WikiAnswers.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write a program to fill the enter screen with a smiling face the smiling face has an ASCII value 1?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Write a C program to accept a string from user and display its ascii value and then display sum of all ascii value of strings?

//C program to accept a string from user and //display its ascii value and //then display sum of all ascii value of strings #include&lt;stdio.h&gt; #include &lt;string.h&gt; int main() { char String[100]; int Sum,Index; Sum=0; //Sum is initially zero printf("Enter the string:\n"); gets(String); //Accept String from User for(Index=0;Index&lt;strlen(String);Index++) { Sum+=(String[Index]); //Adds (the ASCII values of) the String characters. } printf("The sum is %d\n",Sum); //Printing it as %d gives the equivalent ASCII value. return 0; }


How do you write a C plus plus program that displays a pyramid of Xes on the screen using a for loop?

printf ("x")


How do you write a program using the gotoxy statement and print function to display letters of the alphabet on the computer screen?

There is no gotoxy statement in C.


Write down the circle program in gw basic?

auto 10 screen 1 20 circle (160,100), 50 30 end in screen 2 auto 10 screen 2 20 circle (320,100), 200 30 end by: Tariq Ismail.


How to write a program in c which takes any random number like '1' '2' as input and give output 'one''two'?

Been so long since I wrote c I cant remember much about it. You will have to create a key capture process. If someone enters a charchacter have the ascii value compared to a list of instructions that you want it to perform. If 1 then replace value sent to screen with "one"If 2 then replace value sent to screen with "two"etc. It is a relatively simple program. It has just been 15 yrs or so since I have written anything so I can only give you generic examples. Hope this helps some.

Related questions

Write an assembly language program to print a to z on screen?

write a program to print A to Z on screen in c?


American standard for information interchange ASCII?

ASCII is code in which computer programs are written . it is the computer machine language.if write a program in any computer language thaen it will be converted in this code.


Write a Java program to get the ASCII value of the given number?

If you look up the ASCII values for digits, you'll see that 0 = 48, 1 = 49... 9 = 57. So it's a simple matter of adding 48 to your digit to find out the ASCII value for it.


Write a program to display your name on computer screen?

Faisal


Write a c program which displays digital watch on the screen after taking the hours and minutes from the user?

Write a program which displays digital watch on the screen, after taking the hours and minutes from the user.


Write a program to print all the ascii values and the corresponding representation?

int main (void) { int i; for (i=32; i&lt;=127; ++i) printf ("%3d: '%c'\n", i, i); }


Write a C program to accept a string from user and display its ascii value and then display sum of all ascii value of strings?

//C program to accept a string from user and //display its ascii value and //then display sum of all ascii value of strings #include&lt;stdio.h&gt; #include &lt;string.h&gt; int main() { char String[100]; int Sum,Index; Sum=0; //Sum is initially zero printf("Enter the string:\n"); gets(String); //Accept String from User for(Index=0;Index&lt;strlen(String);Index++) { Sum+=(String[Index]); //Adds (the ASCII values of) the String characters. } printf("The sum is %d\n",Sum); //Printing it as %d gives the equivalent ASCII value. return 0; }


Can you give me a program that will compute number 1 to 5?

nr\m;laeoh9y0m g.qthnedxc In fortran: do i=1,5 write(6,*)i enddo stop end This program will write the numbers 1 to 5 on the screen.


How do you write a C plus plus program that displays a pyramid of Xes on the screen using a for loop?

printf ("x")


How do you write I am smiling in french?

like this : je souris


Why would you use ASCII instead of Binary?

ASCII = American Standard Code for Information InterchangeThat means that ASCII is a type of character encoding...Unless you want to write in 1's and 0's, then you must use ASCII. If you type a single character, it's most likely ASCII. To show you how ridiculous typing in binary is:011101110110100101101011011010010010000001100001011011100111001101110111011001010111001001110011 = wiki answers (lowercase)


Program codes in turbo c that will display border on the console screen using for loops?

There is not one that I know off but you could write it.