Log in

View Full Version : Answer code of given


vikash kumar
Mar 19, 2008, 03:59 PM
Hi...
Question...
If I give input... 1
Then output will be... one
So on...

emanuelthe1st
Jun 13, 2009, 10:22 AM
#include<stdio.h>
main()
{
int x;
if(x==1){
printf("one");
else if(x==2){
printf("two");
else if(x==3){
printf("three");
else if(x==4){
printf("four");
|
|
|
up to you desired

}