GeekInterview.com
  I am new, Sign me up!
 
GeekInterview.com  >  Placement Papers  >  Aztec Systems  >  C
Go To First  |  Previous Question  |  Next Question 
 C  |  Question 6 of 8    Print  
Write a program to print the given integers in the corresponding wordings?Say for eg. if 123 is given as input the output should be displayed as \

  
Total Answers and Comments: 1 Last Update: September 26, 2008     Asked by: Anandkumar 
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
September 25, 2008 13:47:05   #1  
sriranga.ch Member Since: August 2008   Contribution: 5    

RE: Write a program to print the given integers in the corresponding wordings?Say for eg. if 123 is given as input the output should be displayed as
main() { int num 123;
char c;
while(num>1)
{
c num 10;
num num/10;
printf(" c" c);
}
}

 
Is this answer useful? Yes | No

 Related Questions

Latest Answer : /*Function to insert a node in singly sorted linked list *//*pass the header of the list and the element to be inserted *//*header node i,e head is declared as global *//*node is a structure which contains int info; and a pointer of node    ...

Latest Answer : int main(){int n,i,f1=0,f2=1,f3=0;printf("Enter number of terms : ");scanf("%d",&n);if(n==1)printf("0");if (n==2)printf("0  1");if(n>=3){for(i=3;i

Latest Answer : we cantr find the number of node in circular link list because there is no last node in the cir link list .(if any comment plz mail to me         ) ...

A function even_odd_difference()passes the array of elements.Write a program to calculate the difference of the two sums of which one sum adds the elements of odd ones and another adds the elments of even ones.

Latest Answer : This is the recursive version of the program.#include#includestruct list{        int month;        struct list *next;};typedef struct list node;void init(node* ...

Write a program to print the given integers in the corresponding wordings?Say for eg. if 123 is given as input the output should be displayed as \
Read Answers (1) | Asked by : Anandkumar

Two numbers are entered through keyboard, write a program to find the value of one number raised to the power another.
Read Answers (3) | Asked by : sweety


 Sponsored Links

 
Related Articles

Print Servers

Print Servers Print server is a server or advice that is used to connect many printers of a network to it Using the print server any computer on the network can give a print command to the server and the print server will get the job done accordingly Usually a print server is configured on a compute
 

ERP Systems as Quality Control Support

ERP Systems as Quality Control Support For the past few years ERP systems have became one of the most powerful tools for quality control management But ERP is just an informatics system that provides support to the integrated business management mosgoogle center Goals of the Quality Control Module i
 

C++ Standard Input Output Stream

C Standard Input Output Stream In this C tutorial you will learn about standard input stream and standard output stream explained along with syntax and examples C programming language uses the concept of streams to perform input and output operations using the keyboard and to display information on
 

Evolution of database systems

The Evolution of Database systems File Management System Hierarchical database System  Network Database System  Relational Database System File Management System: The file management system also called as FMS in short is one in which all data is stored on a singl
 

How to develop compile and run a C program

The steps involved in building a C program are: 1. First program is created by using any text editor and the file is stored with extension as .c 2. Next the program is compiled. There are many compilers available like GNU C compiler called as gcc, Sun compiler, Borland compiler which is pop
 

Database Systems

Early Databases In the 1960s, the System Development Corporation, one of the world’s first computer software companies and a significant military technology contractor, first used the term “data base” to describe a system to manage United States Air Force personnel. The
 

Systems Design

In previous chapter, we discussed system analysis and requirements stage in SDLC where everything was laid out on papers.  SDLC makes sure that there is an actual need for the software being developed.  Developers need to think of this first, especially in a business setting.&n
 

What is Systems Development Life Cycle

Introduction Developers worldwide will agree that building software takes more than just writing complex codes and implementing them in an environment. Developers usually start out their career in programming by developing programs or software according to their own plan and hope that someone will
 

Operating Systems and IT Certification

With the burst of information technology that is becoming a part of the dominant culture throughout the world, are programs that are designed to help those in this area to grow in knowledge.  By understanding the different technologies that are available, one is able to use them and impleme
 

Quality Aspects to Check While Writing COBOL Program

Quality Aspects to Check While Writing COBOL Program This article gives a general list which the programmer must check while delivering programs developed in COBOL This can also be used as a general checklist for checking quality of the COBOL program developed mosgoogle Quality is a vital factor fo
 

About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape