C library function – system() kullanımı ” int system(const char *command) ” şeklindedir. Parametre ile işletim sistemine bir komut gönderilir. Gönderilen komutlar işletim sistemine göre değişir, cross işlerde dikkat etmek gerekiyor.
Devamını Oku
Top essential programming languages to learn. Here’s the text reformatted as a table: Programming Language Description Python Python is a versatile programming language that is widely used in a variety of fields, including web development, machine learning, data science, and artificial intelligence. JavaScript JavaScript is one of the most popular […]
Devamını Oku
Great leaders know how to tell stories that connect with their audience and inspire them to take action. Here’s how you can do the same. Storytelling is a powerful tool that can be used to connect with people, build relationships, and inspire action. Some of the most successful leaders in […]
Devamını Oku
Most popular languages on GitHub as of October 25, 2019, counting only repos with at least 10000 stars. # language repos count 1 JavaScript 397 2 Python 115 3 Java 103 4 Go 78 5 C++ 53 6 TypeScript 46 7 HTML 36 8 C 33 9 Shell 32 10 […]
Devamını Oku
Bell Labs colleagues Ken Thompson and Dennis Ritchie developed UNIX, a multi-tasking, multi-user operating system alternative to the batch processing systems that dominated the computer industry. Learn more about Thompson: https://www.invent.org/inductees/ken-… and Ritchie: https://www.invent.org/inductees/denn… Dennis Ricthie’s Life Dennis MacAlistair Ritchie was born on September 9, 1941, in Bronxville, New York. […]
Devamını Oku
Tcpcrypt is a protocol that attempts to encrypt (almost) all of your network traffic. Unlike other security mechanisms, Tcpcrypt works out of the box: it requires no configuration, no changes to applications, and your network connections will continue to work even if the remote end does not support Tcpcrypt, in […]
Devamını Oku
Standard Predefined Macros The standard predefined macros are specified by the relevant language standards, so they are available with all compilers that implement those standards. Older compilers may not provide all of them. Their names all start with double underscores.
Devamını Oku
OpenSSL, bir açık kaynaklı sertifika yönetimini ve güvenlik protokollerini (özellikle SSL/TLS) destekleyen bir kütüphanedir. Bu kütüphane, birçok farklı işletim sisteminde kullanılabilir ve genellikle ağ güvenliği ile ilgili çeşitli görevleri yerine getirmek için kullanılır. Örneğin, OpenSSL, bir web sunucusu veya bir istemci arasında güvenli bir iletişim kurulmasını sağlamak için kullanılabilir. OpenSSL, […]
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