Aide programmation
asterix
-
21 mai 2011 à 14:55
ljm972 Messages postés 255 Date d'inscription vendredi 23 février 2007 Statut Membre Dernière intervention 9 mai 2025 - 21 mai 2011 à 17:34
ljm972 Messages postés 255 Date d'inscription vendredi 23 février 2007 Statut Membre Dernière intervention 9 mai 2025 - 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 télécommande porte de garage brico depot - Forum Matériel & Système
- Programmation binaire - Guide
- Programmation envoi sms - Guide
1 réponse
ljm972
Messages postés
255
Date d'inscription
vendredi 23 février 2007
Statut
Membre
Dernière intervention
9 mai 2025
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);
}