![]() |
От: |
c-smile
|
http://terrainformatica.com |
Дата: | 24.10.02 21:19 | ||
Оценка: |
int main()
{
// few tests to ensure correct function selection
unsigned int uival = atoui("123");
int ival = atoi("-2123");
unsigned int hexval = atoui("0xdeAdbEaf");
unsigned long ulval = atoul("-2123");
long lval = atol(" -2123");
...
}