Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include<stdlib.h>
- #include<locale.h>
- main()
- {
- setlocale(LC_ALL,"Turkish");
- char isim[100], sehir[100], mail[100], mah[100] ;
- int binano, cadde;
- printf("Benim adım: ");
- scanf("%s",isim);
- printf("E-posta adresim: ");
- scanf("%s",mail);
- printf("Oturduğum şehir: ");
- scanf("%s",sehir);
- printf("Oturduğum mahalle: ");
- scanf("%s",mah);
- printf("Bina numarası: ");
- scanf("%d",&binano);
- printf("Cadde numarası: ");
- scanf("%d",&cadde);
- system("pause");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment