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
CREATE TABLE COMPANY( ID INTEGER PRIMARY KEY AUTOINCREMENT, NAME TEXT NOT NULL, AGE INT NOT NULL, ADDRESS CHAR(50), SALARY REAL );
Devamını Oku
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 […]
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
DevOps is a set of practices that combines software development (Dev) and IT operations (Ops). It aims to shorten the systems development life cycle and provide high-quality continuous delivery. DevOps culture is a way of thinking about and working with technology that emphasizes collaboration, communication, and automation. It is a […]
Devamını Oku
MongoDB is one of the most used, open-source document database, and NoSQL database. MongoDB is developed by 10gen. It is written in c++ and it is a document-oriented database. It uses BSON format. This tutorial will provide you good understanding on MongoDB concepts and provide you the hands on skills […]
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