Guest User

Untitled

a guest
Dec 17th, 2011
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <clocale>
  3. #include <stdlib.h>
  4.  
  5. int nav;
  6. char name [200];
  7.  
  8. static void navigasyon();
  9.  
  10. void main()
  11. {
  12. setlocale(LC_ALL,"turkish");
  13. navigasyon(); // 'nav' variable coming from here
  14. switch (nav)
  15. {
  16. case 1:
  17. system("cls");
  18. printf("Müşterinin Adını Girin : \n");
  19. scanf("%s", &name);
  20. printf("%s", name);
  21. break;
  22. case 2:
  23. printf("Tüm müşteriler");
  24. break;
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment