Skip to content

Instantly share code, notes, and snippets.

@canberkozer
Created November 11, 2019 03:14
Show Gist options
  • Save canberkozer/35fe471177e96d5acb641acf158ec38f to your computer and use it in GitHub Desktop.
Save canberkozer/35fe471177e96d5acb641acf158ec38f to your computer and use it in GitHub Desktop.
C Syntax 3
#include <stdio.h>
int main(){
//Print Fonksiyonu
printf("Hello World\n"); // '\n' bir alt satıra geçmek için kullanılır.
printf("Hello Medium\n"); // '\n' kullanılmaz ise yazılar arasında boşluk olmadan çıktı verir.
//Değişkenleri Ekrana Yazdırmak
printf("%d %d %d \n",i,si,li);
printf("%.2f %f %c\n",d,f,c);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment