Close

Yazılım geliştirmek

Yazılım geliştirmek, yazılımcılık ile ilgili tüm içerik burada

C String ‘i Ondalıklı Sayıya Çevirmek

C String 'i Ondalıklı Sayıya Çevirmek

Standart C kütüphanesinden double atof(const char *str) ile bir metini ondalıklı sayıya çevirebiliriz. #include #include #include int main() { float val; char str[20]; strcpy(str, “98993489”); val = atof(str); printf(“String value = %s, Float value = %f\n”, str, val); strcpy(str, “tutorialspoint.com”); val = atof(str); printf(“String value = %s, Float value = […]

Devamını Oku

Swagger: How to Create an API Documentation

Swagger: How to Create an API Documentation

Creating API documentation with Swagger involves the following steps: By following these steps, you can create API documentation with Swagger that is easy to use and provides all the information developers need to interact with your API. Good documentation is crucial for any REST API. Swagger is a tool that […]

Devamını Oku

An Introduction to mRuby | Ruby Creator Yukihiro “Matz” Matsumoto

An Introduction to mRuby | Ruby Creator Yukihiro "Matz" Matsumoto

Yukihiro Matsumoto a.k.a. Matz, is a Japanese computer scientist and software programmer best known as the chief designer of the Ruby programming language and its reference implementation, Matz’s Ruby Interpreter (MRI). His demeanor has brought about a motto in the Ruby community “Matz is nice and so we are nice,” […]

Devamını Oku

Ruby Programming

Ruby Programming

Ruby is a programming language that was first released in 1995. It is an interpreted, high-level, general-purpose programming language. Ruby is designed to be easy to read and write and is often used for web development, scripting, and rapid application development. It is known for its simple, elegant syntax and […]

Devamını Oku

TFTP Nedir?

TFTP Nedir?

Trivial File Transfer Protocol (TFTP) 1980 yılında tanımlanmış, FTP’ nin temel fonksiyonel şekli olarak ifade edilen basit bir dosya transfer protokolüdür. Basit yapısından dolayı kullanılması esnasında çok az bellek tüketilmektedir. Bu özelliğinden dolayı, yeterli yığın bellek cihazı (mass storage device) olmayan yönlendirici (router) bilgisayarların önyüklemesinde kullanılırdı. Halen ağ üzerinde bulunan […]

Devamını Oku