Giriş
Açıklaması
şöyle
- strtoll, to convert a string into an integer
- strtof/d/ld, to convert a string into a floating-point number
Sonucu long olarak istiyorsak
strtol() metodunu kullanırız.
Örnek
Şöyle
yaparız
int64_t num = 0;
...
num = strtoll (str, NULL, 10);
Hiç yorum yok:
Yorum Gönder