Advance Programs On For LoopLearn C ProgrammingLearn ProgrammingLoop Control StructuresPrograms On Case Control StructureResources

057. Write a program to accept a single value interger from user and print that integer in words in C language

By September 18, 2012 September 5th, 2018 No Comments
#include<stdio.h>
#include<conio.h>  
main()
{
	int n;
	clrscr();
	printf("Enter number...");
	scanf("%1d",&n);  //%1d to scan single integer
	switch(n)
	{
		case 0 : printf("Zero");break;
		case 1 : printf("One");break;
		case 2 : printf("Two");break;
		case 3 : printf("Three");break;
		case 4 : printf("Four");break;
		case 5 : printf("Five");break;
		case 6 : printf("Six");break;
		case 7 : printf("Seven ");break;
		case 8 : printf("Eigth ");break;
		case 9 : printf("Nine ");break;
	}
	getch();
}

Leave a Reply

DEMO01