Sponsored Content
Full Discussion: type conversion C, atoi()
Top Forums Programming type conversion C, atoi() Post 302580352 by siva shankar on Thursday 8th of December 2011 08:19:02 AM
Old 12-08-2011
Hi friend,

The code is not only for n=0, its in a for loop. Let me explain with an example.

If s contain a string "5270", then the loop continue for 4 times:

1st : 10*0 + 5 = 5
2nd : 10*5 + 2 = 52
3rd : 10*52 + 7 = 527
4th : 10*527 + 0 = 5270
which is the n value and a number instead of string.

Try to use some debugging tools and check the variables, u will understand it clearly...
This User Gave Thanks to siva shankar For This Post:
 

9 More Discussions You Might Find Interesting

1. Programming

atoi

i know what is the use of atoi function.... converts string to int. but whenever i use that it gives me 0.... could any one help in this issue.. eg. int i; char str; str="name"; i=atoi(str); i gives me 0. why? (3 Replies)
Discussion started by: bankpro
3 Replies

2. Shell Programming and Scripting

String type to date type

Can one string type variable changed into the date type variable. (1 Reply)
Discussion started by: rinku
1 Replies

3. Shell Programming and Scripting

Does KSH support data type conversion?

Hello,everyone here. I'm coding with KSH to achieve exploring the disk space and judging whether it closes to overflow.But It seems that no one way to convert a string variable to integer. df | read A B C D E F G H I J K L print ${L} Can I convert L to integer type? Thanks for... (2 Replies)
Discussion started by: joshuaduan
2 Replies

4. Programming

array type has incomplete element type

Dear colleagues, One of my friend have a problem with c code. While compiling a c program it displays a message like "array type has incomplete element type". Any body can provide a solution for it. Jaganadh.G (1 Reply)
Discussion started by: jaganadh
1 Replies

5. Shell Programming and Scripting

Help in conversion ......

Hi, I have a requirement to capture file time stamp and compare with current system time. I am using HP-AUX K-shell. Below is what i have done Getting current date into myfile2 --------------------------------- date +%Y%m%d%H%M%S > myfile2 20091110132800 Getting the file date into... (5 Replies)
Discussion started by: chinniforu2003
5 Replies

6. UNIX for Advanced & Expert Users

.so to .sl conversion ?

Hi all, I have one libxxx.so file ( which I got from a third party ). We use shared library libxxx.sl . Is there any way to convert the .so file to .sl file ? Thanks in advance - M (3 Replies)
Discussion started by: kanu_kanu
3 Replies

7. Programming

help with atoi and macros in C

I have a PORT_NUM macro (10 digits long number) in a server file, if i do htons(PORT_NUM) i get warning: this decimal constant is unsigned only in ISO C90 warning: large integer implicitly truncated to unsigned type whats wrong with this? (2 Replies)
Discussion started by: omega666
2 Replies

8. Shell Programming and Scripting

Military type format date/time conversion

Hello All, I have a requirement to convert a 12 hour format to 24 hour time format and the sample input /out put is below Input Time format : Nov 2 2011 12:16AM Out Put Format : Nov 2 2011 0:16 Input : Nov 2 2011 4:16PM Out Put: Nov 2 2011 16:16 I have done this using a... (6 Replies)
Discussion started by: jambesh
6 Replies

9. Programming

Logical Error With Type Conversion In C

So, I'm into about 650 lines of some code I'm working on. So I'll try to explain instead of flooding this post. Say I have some code like this: int main() { int i, j; char data; printf("Gimme something: "); fgets(data, INPUT_BUFF, stdin); for (j = 0; j < data; j++){... (6 Replies)
Discussion started by: Azrael
6 Replies
atoi(3) 						     Library Functions Manual							   atoi(3)

NAME
atoi, atol, strtol, strtoul - Convert a character string to the specified integer data type LIBRARY
Standard C Library (libc.a) SYNOPSIS
#include <stdlib.h> int atoi( const char *nptr); long int atol( const char *nptr); long int strtol( const char *nptr, char **endptr, int base); unsigned long int strtoul( const char *nptr, char **endptr, int base); PARAMETERS
Points to the character string to convert. Points to a pointer in which the function stores the position in the string specified by the nptr parameter where a character is found that is not a valid character for the purpose of this conversion. Specifies the radix to use for the conversion. DESCRIPTION
The atoi(), atol(), strtol(), and strtoul() functions are used to convert a character string pointed to by the nptr parameter to an integer having a specified data type. The atoi() and atol() functions convert a character string containing decimal integer constants, but the strtol() and strtoul() functions can convert a character string containing a integer constant in octal, decimal, hexadecimal, or a base specified by the base parameter. The atoi() function converts the character string pointed to by the nptr parameter, up to the first character inconsistent with the format of a decimal integer, to an integer data type. Leading white-space characters are ignored. A call to this function is equivalent to a call to strtol(nptr, (char**) NULL, 10). The int value of the input string is returned. The atol() function converts the character string pointed to by the nptr parameter, up to the first character inconsistent with the format of a decimal integer, to a long integer data type. Leading white-space characters are ignored. A call to this function is equivalent to a call to strtol(nptr, (char**) NULL, 10). The long int value of the input string is returned. The strtol() function converts the initial portion of the character string pointed to by the nptr parameter to a long integer representa- tion. The input character string is first broken down into three parts: White space -- an initial (possibly empty) sequence of spaces (as specified by the isspace() function) Subject sequence -- a sequence of characters that are valid in an integer constant of the radix deter- mined by the base parameter Unrecognized characters -- final sequence of unrecognized character codes, including the terminating null char- acter If possible, the subject is then converted to a long integer and the result is returned. The base parameter can take values between 0 and 36. If the base value is 0 (zero), the subject string can be a decimal, octal, or hexa- decimal integer constant. A decimal constant begins with a nonzero digit, and consists of a sequence of decimal digits. An octal constant consists of the prefix 0 (zero) optionally followed by a sequence of digits in the range 0 through 7. A hexadecimal constant consists of the prefix 0x or 0X followed by a sequence consisting of decimal digits and the letters in the range a (or A) to f (or F). If the base value is between 2 and 36, the subject string can be a sequence of digits and letters a (or A) to z ( or Z ) that are used to represent an integer in the specified base. Alphabetic characters represent digits with an equivalent decimal value from 10 (for the letter A) to 35 (for the letter Z). The subject string can only have digits with a value less than base and alphabetic characters with equivalent values less than base. For example, when the value of the base parameter is 20, only the following value assignments are converted: Character 0 1 2 3 4 5 6 7 8 9 A B C D E F G H I J a b c d e f g h i j Value 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 The subject string can optionally be preceded by a + (plus sign) or - (minus sign), but cannot include an integer suffix (such as L). If the subject string is preceded by a - (minus sign), the converted integer value has a negative value. If the value of base is 16, the characters 0x or 0X may optionally precede the sequence of letters or digits, following the sign, if present. The character string is parsed to skip the initial space characters (as determined by the isspace() function). Any nonspace character is the starting of a potential subject string that may form an integer in the base specified by the base parameter. The subject sequence is defined to be the longest initial substring that is of the expected form of long integer. Any character that does not satisfy this expected form begins the final sequence of unrecognized characters. The strtol() function sets the location pointed to by the endptr parameter to point to this final sequence of unrecognized characters except when endptr is a null pointer. The LC_CTYPE category of the locale controls what characters are treated as spaces but does not effect the interpretation of characters as part of the subject string. The characters in the subject string are always treated as if the locale was the C locale. The strtoul() function is the same as the strtol() function, except that strtoul() returns an unsigned long integer. EXAMPLES
The following example converts a character string to a signed long integer. #include <stdio.h> #include <stdlib.h> #include <locale.h> #include <errno.h> #define LENGTH 40 main() { char String[LENGTH], *endptr; long int retval; (void)setlocale(LC_ALL, ""); if (fgets(String, LENGTH, stdin) != NULL) { errno = 0; retval = strtol ( String, &endptr, 0 ); if (retval == 0 && (errno != 0 || String == endptr)) { /* No conversion could be performed */ printf("No conversion performed "); } else if (errno !=0 && (retval == LONG_MAX || retval == LONG_MIN)) { /* Error handling */ } else { /* retval contains long integer */ printf("Integer in decimal is %d ", retval); } } } RETURN VALUES
The atoi() function returns the converted value of an integer if the expected form is found. If no conversion could be performed, a value of 0 (zero) is returned. If the converted value is outside the range of representable values, INT_MAX or INT_MIN is returned (according to the sign of the value). The atol() and strtol() functions return the converted value of long integer if the expected form is found. If no conversion could be per- formed, a value of 0 (zero) is returned. If the converted value is outside the range of representable values, LONG_MAX or LONG_MIN is returned (according to the sign of the value). The strtoul() function returns the converted value of long integer if the expected form is found. If no conversion could be performed, a value of 0 (zero) is returned. If the converted value is outside the range of representable values, ULONG_MAX is returned. In the strtol() and strtoul() functions, if the endptr parameter is not a null pointer, the function stores a pointer to the final sequence of unrecognized characters in the object pointed to by endptr except when the subject sequence is empty or invalid. In this case, the func- tion stores the nptr pointer in the object pointed to by the endptr parameter. Since these functions return 0 (zero), INT_MIN, INT_MAX, LONG_MIN, LONG_MAX, and ULONG_MAX in the event of an error and these values are also valid returns if the function is successful, applications should set errno to 0 (zero) before calling these functions, and check errno after return from the function. If errno is nonzero, an error occurred. Additionally, for the strtol() and strtoul() functions, if 0 (zero) is returned, applications should check if the endptr parameter equals the nptr parameter. In this case, there was no valid subject string. ERRORS
If any of the following conditions occurs, the atoi(), atol(), strtol(), or strtoul() function sets errno to the corresponding value. The base parameter has a value less than 0 or greater than 36. If nptr is NULL, the functions return 0 and do not set errno. The converted value is outside the range of representable values. RELATED INFORMATION
Functions: atof(3), scanf(3), wcstol(3), wcstoul(3). delim off atoi(3)
All times are GMT -4. The time now is 04:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy