Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int main()
- {
- char nom[10];// char يعني جدول للاحرف والارقام والرقم 10 يعني ندخل 10 حروف او بالاحرى 9
- printf("entrez votre nom");
- scanf("%s",&nom);// استعملنا %s لانها chaine de caracteres
- printf("votre nom est %s",nom);
- }
Advertisement
Add Comment
Please, Sign In to add comment