Close

C++ Dersleri

C++ dersleri

Vehicle Routing Problem in Python

Vehicle Routing Problem in Python

The Vehicle Routing Problem (VRP) is a classic optimization problem that arises in many different contexts, such as delivery, transportation, and logistics. In the VRP, we are given a set of customers that need to be served, a fleet of vehicles, and a set of constraints, such as the maximum […]

Devamını Oku

Adım Adım Yazılımcılık Serisi

Yazılımda Ustalaşmak

GİT ve GitHub derslerimizde Branching ile ilgili uzun bir ders hazırlıyorum. Ardından github ‘a geçeceğiz. Python derslerinde sadece bir öğrencim vardı. O da pandemi nedeniyle devam etmiyor. Onu bekliyorum. Docker , Container ve microservices ‘ler konusunda güzel bir seri hazırlıyorum. Java ve C# serisi yapmayı düşünmüyorum. Benzerleri çok var. C++ […]

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 = […]

Devamını Oku