C Language and Libraries Help (clang.hlp) (
Table of Contents;
Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software,
purely for historical purposes.
If you're looking for up-to-date documentation, particularly for programming,
you should not rely on the information found here, as it will be woefully
out of date.
NUMTOA.C
◄Up► ◄Contents► ◄Index► ◄Back►
─────Run-Time Library───────────────────────────────────────────────────────
/* NUMTOA.C illustrates number-to-string conversion functions including:
* _itoa _ltoa _ultoa
*/
#include <stdlib.h>
#include <stdio.h>
void main()
{
int base, i;
long l;
unsigned long ul;
char buffer[60];
printf( "Enter an integer: " );
scanf( "%d", &i );
for( base = 2; base <= 16; base += 2 )
{
_itoa( i, buffer, base );
if( base != 10 )
printf( "%d in base %d is: %s\n", i, base, buffer );
}
printf( "Enter a long integer: " );
scanf( "%ld", &l );
for( base = 2; base <= 16; base += 2 )
{
_ltoa( l, buffer, base );
if( base != 10 )
printf( "%ld in base %d is: %s\n", l, base, buffer );
}
printf( "Enter an unsigned long integer: " );
scanf( "%lu", &ul );
for( base = 2; base <= 16; base += 2 )
{
_ultoa( ul, buffer, base );
if( base != 10 )
printf( "%lu in base %d is: %s\n", ul, base, buffer );
}
}
-♦-