C/stdlib.h/strtoull — различия между версиями

Материал из C\C++ эксперт
Перейти к: навигация, поиск
м (1 версия: Импорт контента...)
 
м (1 версия: Импорт контента...)
 
(нет различий)

Текущая версия на 13:23, 25 мая 2010

strtoull: similar to strtoul() except that it returns an unsigned long long int

<source lang="cpp">


Header file: #include <stdlib.h> Declaration: unsigned long long int strtoull(const char *restrict start, char **restrict end, int radix);

  1. include <stdlib.h>

int main(void){

   char *start, *end;
   char a[100];
   end = a;
   *start= "12341234";
   printf("%d", strtoull(start, &end, 8));

}

      </source>