Close

C ‘de String Fonksiyonları

C 'de String Fonksiyonları

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 ( )  gives the length […]

Devamını Oku

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 = %f\n”, str, val); return(0); }

Devamını Oku

Embedded Sistemlerde Yazılım Hazırlamak

ozgurozkok

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

Delious PICO Restaurant POS Solution

DeliousPico POS terminal for next generation

Future Proof Your Restaurant Investment with Delious PICO. It is Compact, Flexible and integrated with the Delious Cloud Back office. Delious PICO is ideal for Café, Restaurant, Food Courts, and Speciality Shops. Delious PICO, the latest innovative and powerful POS solution for every F&B business model. The all-in-one integrated POS terminal comes with a built-in […]

Devamını Oku

The mind behind Linux | Linus Torvalds

The mind behind Linux | Linus Torvalds

Linus Torvalds transformed technology twice — first with the Linux kernel, which helps power the Internet, and again with Git, the source code management system used by developers worldwide. In a rare interview with TED Curator Chris Anderson, Torvalds discusses with remarkable openness the personality traits that prompted his unique philosophy of work, engineering and […]

Devamını Oku

C ‘de String Array ‘i Nasıl Yapılır ?

C 'de String Array 'i Nasıl Yapılır ?

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

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 can help create and display […]

Devamını Oku