First commit
This commit is contained in:
10
IUT/Info2/Exercices/6.2.5/fonction.c
Normal file
10
IUT/Info2/Exercices/6.2.5/fonction.c
Normal file
@@ -0,0 +1,10 @@
|
||||
#include "stdio.h"
|
||||
#include "fonction.h"
|
||||
|
||||
void Affiche_bin(char octet) {
|
||||
char masque = 0b00000001;
|
||||
|
||||
for (unsigned int i = 7; i > 0; i++) {
|
||||
printf("%", )
|
||||
}
|
||||
}
|
||||
1
IUT/Info2/Exercices/6.2.5/fonction.h
Normal file
1
IUT/Info2/Exercices/6.2.5/fonction.h
Normal file
@@ -0,0 +1 @@
|
||||
void Affiche_Bin(char octet);
|
||||
0
IUT/Info2/Exercices/6.2.5/main
Normal file
0
IUT/Info2/Exercices/6.2.5/main
Normal file
0
IUT/Info2/Exercices/6.2.5/main.c
Normal file
0
IUT/Info2/Exercices/6.2.5/main.c
Normal file
Reference in New Issue
Block a user