Langage c
Fermé
aboubacarassa
-
3 déc. 2013 à 02:19
seo610 Messages postés 596 Date d'inscription mardi 9 février 2010 Statut Membre Dernière intervention 30 juin 2015 - 3 déc. 2013 à 03:21
seo610 Messages postés 596 Date d'inscription mardi 9 février 2010 Statut Membre Dernière intervention 30 juin 2015 - 3 déc. 2013 à 03:21
A voir également:
- Langage c
- Langage ascii - Guide
- Langage binaire - Guide
- Pascal langage - Télécharger - Édition & Programmation
- Langage pascal - Télécharger - Édition & Programmation
- Dev-Pascal - Télécharger - Édition & Programmation
1 réponse
seo610
Messages postés
596
Date d'inscription
mardi 9 février 2010
Statut
Membre
Dernière intervention
30 juin 2015
102
3 déc. 2013 à 03:21
3 déc. 2013 à 03:21
Simplement :
Ou bien :
Ou encore
printf("%s\n", tableau);
Ou bien :
char tableau[] = "hello, world" for (i = 0; i < strlen(tableau); i++) printf("%c", tableau[i]);
Ou encore
int i, j; int hauteur = 3; int longueur = 4; char tableau[3][4]; for (i = 0; i < hauteur; i++) for(j = 0; j < longueur; j++) tableau[i][j] = j < longueur-1 ? '*' : '\n'; for (i = 0; i < hauteur; i++) for(j = 0; j < longueur; j++) printf("%c", tableau[i][j]);