Aide programmation
Fermé
asterix
-
21 mai 2011 à 14:55
ljm972 Messages postés 254 Date d'inscription vendredi 23 février 2007 Statut Membre Dernière intervention 6 décembre 2021 - 21 mai 2011 à 17:34
ljm972 Messages postés 254 Date d'inscription vendredi 23 février 2007 Statut Membre Dernière intervention 6 décembre 2021 - 21 mai 2011 à 17:34
A voir également:
- Aide programmation
- Application de programmation - Guide
- Programmation logo tortue télécharger - Télécharger - Études & Formations
- Programmation carte à puce vierge ✓ - Forum Matériel & Système
- Problème de programmation digicode extel klavy 3 ✓ - Forum Loisirs / Divertissements
- Programmation binaire - Guide
1 réponse
ljm972
Messages postés
254
Date d'inscription
vendredi 23 février 2007
Statut
Membre
Dernière intervention
6 décembre 2021
29
21 mai 2011 à 17:34
21 mai 2011 à 17:34
/* function base 10-> base 2 */
int dec2bin(int n){
if(n%2!=0){
dec2bin(n%2);
}
printf("%d",n/2);
}
int dec2bin(int n){
if(n%2!=0){
dec2bin(n%2);
}
printf("%d",n/2);
}