Close

(04) Yazılım Dersleri

Yazılım geliştirme için başlangıç düzeyinde eğitimler

cannot call member function without object

cannot call member function without object

The programming language is a bundle of different concepts, built-in functions, and operations; it also comes up with many errors. These errors can be of a logical type, syntax errors, and others as well. You can get many errors while coding when you make some logical or syntax errors in […]

Devamını Oku

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

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

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

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