Skip to content

Instantly share code, notes, and snippets.

@canberkozer
Created November 11, 2019 03:10
Show Gist options
  • Save canberkozer/a1eedb1c1998b1037f59378f76d8ffcf to your computer and use it in GitHub Desktop.
Save canberkozer/a1eedb1c1998b1037f59378f76d8ffcf to your computer and use it in GitHub Desktop.
C Syntax 2
#include <stdio.h>
int main(){
//Değişken tanımlama
int i=10;
short int si = 20;
long int li = 30;
double d = 3.14;
float f = 2.2;
char c = 'A';
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment