Close

(04) Yazılım Dersleri

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

Developing Java Applications with Visual Studio Code

Developing Java Applications with Visual Studio Code

Visual Studio Code (vscode) is a very popular, extensible open source coding editor that provides support for multiple programming languages via the Language Server Protocol (LSP). Java support is provided by the Eclipse jdt.ls server, implementing LSP. The combination of vscode and jdt.ls represents a refreshing perspective on the IDE […]

Devamını Oku

How to configure PATH and CLASSPATH for Java in Mac OS

How to configure PATH and CLASSPATH for Java in Mac OS

How to configure PATH and CLASSPATH for Java in Mac OS First, you need to find where the bin directory that contains all java binary files is located. To do that simply cd /Library/Java/ Then do one “ls” to see what you have in this directory. Then continue cd to […]

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