answersLogoWhite

0


Best Answer

nine seven two

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Writa a program to print a number in word eg if 972 is entered through the keyboard that should print nine seven two?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

When 25 numbers are entered from the keyboard into an array the number to be searched is entered through the keyboard by user write a program in C to find if number to be searched is present?

#include<stdio.h> #include<conio.h> void main() { int num[25]; int i,j,k=0; for(i=0;i<=24;i++) { printf("Enter numbers : "); scanf("%d",&num[i]); } printf("\nEnter the number to be searched : "); scanf("%d",&j); printf("\nthe is %d",j); for(i=0;i<=24;i++) { if(num[i]%j==0) k=k+1; } printf("\nIt is repeated %d times."k); }


Find the absolute value write a program of a no entered through the keyboard?

#include<stdio.h> #include<conio.h> int main () { int num; printf("enter the number"); scanf("%d",&num); if(num<0) num=(-1)*num; printf("absolute value=%d",num); getch(); return 0; }


Any integer is input through the keyboard write a c program to find out whether it is an odd number or even number?

printf(\n "ENTER THE NUMBER\t"); scanf{"%d",&a); while(a!=0); { r=a%2; if(r==0) printf("\n\n THE NUMBER IS EVEN \t"); else printf("\n\n THE NUMBER IS ODD \t"); printf ("\n ENTER THE NUMBER \t"); scanf("%d",&a); } getch(); }


If you were to travel straight east from the Mediterranean sea through the middle east which river would you come to first?

It depends where you entered. If you entered through Israel you would first hit the river Jordan. If you entered through Lebanon you might hit the Litani River, or a number of other rivers that flow into the Mediterranean Sea. If you entered through Syria or Turkey there are a number of small rivers you might hit before you reached the Euphrates.


Write a shell program to find given no is even or odd?

The pseudo code would be as follows (you figure out the syntax) 1) Prompt the user to enter a number 2) If entered number is alpha, quit program after displaying message that the user ended the program. 3) Otherwise, find Modulo 2 of the entered number. This is a fancy way of saying "find the remainder when the number is divided by 2) 4) If Modulo 2 is zero, the number is even, otherwise odd 5) Display message showing if the entered number was Even or Odd 6) Branch back to step 1


A c program that read a floating number from the keyboard and finds its fourth root?

fourth root is sqrt(sqrt(n));


What is c program to calculate product of all even numbers from entered number down to 1?

c is programming laungage


What does cout stand for in c?

It serves to send usually text-based information on the monitor (in currently running application, window), for instance:...int myVariable;cout >> "Please enter a number: ";cin >> myVarible;//You entered number 5cout


What is the smallest number on the computer keyboard?

The smallest number on the computer keyboard is zero (0)


Location of number key in the keyboard?

It's on the far right of the keyboard known as numpad and also there are number keys above the alphabets on your keyboard.


What is a number that can be entered into a cell on Excel?

Which of the following is a number that can be entered into a cell?


C program to find square of an integer?

#include#includevoid main(){long int n;printf("Please enter the number");scanf("%ld" ,&n);n=n*n;printf("Square of entered number = %ld ");}but if you want to show the entered number e.g.Square of the entered number 8=64then below is the code.#include#includevoid main(){long int m,n;printf("Please enter the number");scanf("%ld" ,&n);m=n;n=n*n;printf("Square of entered number %ld = %ld ",m,n);}