crescent72

Untitled

Dec 21st, 2016
453
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.60 KB | None | 0 0
  1.     #include<stdio.h>
  2.     #include<stdlib.h>
  3.     #include<locale.h>
  4.     main()
  5.  
  6.     {
  7.         setlocale(LC_ALL,"Turkish");
  8.         char isim[100], sehir[100], mail[100], mah[100] ;
  9.         int binano, cadde;
  10.  
  11.         printf("Benim adım: ");
  12.         scanf("%s",isim);
  13.         printf("E-posta adresim: ");
  14.         scanf("%s",mail);
  15.         printf("Oturduğum şehir: ");
  16.         scanf("%s",sehir);
  17.         printf("Oturduğum mahalle: ");
  18.         scanf("%s",mah);
  19.         printf("Bina numarası: ");
  20.         scanf("%d",&binano);
  21.         printf("Cadde numarası: ");
  22.         scanf("%d",&cadde);
  23.  
  24.         system("pause");
  25.         return 0;
  26.     }
Advertisement
Add Comment
Please, Sign In to add comment