S.no String functions Description 1 strcat ( ) Concatenates str2 at the end of str1. 2 strncat ( ) appends a portion of string to another 3 strcpy ( ) Copies str2 into str1 4 strncpy ( ) copies given number of characters of one string to another 5 strlen […]
Devamını Oku
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
Seneler sonra tekrar gömülü sistemlere (embedded system) proje hazırlamam gerekti. Gelişen teknoloji, maliyetlerin inmesine ve işlemcilerin güçlenmesini sağladı.
Devamını Oku
Eğer içeriği değişmeyecek string ‘lerden oluşuyor ise const char *a[2]; a[0] = “ozgur”; a[1] = “ali”; İçeriği değişecek stringlerden oluşacak dizi için char a[2][14]; strcpy(a[0], “ozgur”); strcpy(a[1], “ali”);
Devamını Oku
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
Windows: system(“cls”); Unix: system(“clear”);
Devamını Oku
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 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
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