bouchnina

Untitled

Dec 7th, 2012
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.29 KB | None | 0 0
  1. int main()
  2. {
  3. char nom[10];// char يعني جدول للاحرف والارقام والرقم 10 يعني ندخل 10 حروف او بالاحرى 9
  4. printf("entrez votre nom");
  5. scanf("%s",&nom);// استعملنا %s لانها chaine de caracteres
  6.  
  7. printf("votre nom est %s",nom);
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment