CODES
some learning from problems.
CODES
some learning from problems.
Showing posts with label
atoi
.
Show all posts
Showing posts with label
atoi
.
Show all posts
Wednesday, 4 July 2012
atoi is a function in the C programming language that converts a string into an integer numerical representation. atoi stands for ASCII to integer. It is included in the C standard library header file stdlib.h. Its prototype is as follows:
›
atoi : ASCII to integer //INPUT : 24 83 0 2 //OUTPUT : 24 83 0 2 #include<stdio.h> #include<string.h> int ...
›
Home
View web version