diff --git a/DEV.1.1/Piles_et_Files/1.Chainée.c b/DEV.1.1/Piles_et_Files/1.Chainée.c new file mode 100644 index 0000000..158066c --- /dev/null +++ b/DEV.1.1/Piles_et_Files/1.Chainée.c @@ -0,0 +1,6 @@ +#include +#include + +int main(void){ + return EXIT_SUCCESS; +} diff --git a/DEV.1.1/Structures/1.Date.c b/DEV.1.1/Structures/1.Date.c new file mode 100644 index 0000000..1f89826 --- /dev/null +++ b/DEV.1.1/Structures/1.Date.c @@ -0,0 +1,7 @@ +#include + +int main(int argc, char const *argv[]) +{ + /* code */ + return 0; +} \ No newline at end of file diff --git a/DEV.1.2/test/index.html b/DEV.1.2/test/index.html index f4dcd00..44cafba 100644 --- a/DEV.1.2/test/index.html +++ b/DEV.1.2/test/index.html @@ -3,7 +3,7 @@ - Recettes et Chefs + Sites pour Étoiles et Saveurs @@ -25,7 +25,7 @@

Les Cuisines

  • Asiatique
  • -
  • Arabe
  • +
  • Arabe
  • Française
  • Mexicaine
  • Grecque
  • diff --git a/DEV.1.2/tp3/ex4.html b/DEV.1.2/tp3/ex4.html new file mode 100644 index 0000000..21a28e6 --- /dev/null +++ b/DEV.1.2/tp3/ex4.html @@ -0,0 +1,60 @@ + + + + + + + + Document + + + +
    + +
    +
    +
    +
    +

    Article title 1

    +
    +
    + +

    lorem ipsum

    +
    +
    +
    +
    +

    Article title 2

    +
    +
    + +

    lorem ipsum

    +
    +
    +
    +
    +

    Article title 3

    +
    +
    + +

    lorem ipsum

    +
    +
    +
    +
    +

    Article title 3

    +
    +
    + +

    lorem ipsum

    +
    +
    +
    + + diff --git a/DEV.1.2/tp3/style_ex4.css b/DEV.1.2/tp3/style_ex4.css new file mode 100644 index 0000000..b97f333 --- /dev/null +++ b/DEV.1.2/tp3/style_ex4.css @@ -0,0 +1,21 @@ +ul { + + text-align: center; + padding:0; +} +li { + list-style-type: none; + list-style-position: inside; + display: inline-block; + margin-right: 2em; + font-size : 2em; +} +li:last-child{ + margin-right:0; + +} +article { + text-align: justify; + border : 1px solid grey; + padding : 1em; +} diff --git a/coursDEV.1.1/20.01-structure-rassemblant-infofile-char.c b/coursDEV.1.1/20.01-structure-rassemblant-infofile-char.c new file mode 100644 index 0000000..d0b1c1d --- /dev/null +++ b/coursDEV.1.1/20.01-structure-rassemblant-infofile-char.c @@ -0,0 +1,25 @@ +#include +#include + +typedef struct { + char tab[50]; + int indice_debut; + int indice_fin; + int taille; +} car_file; + + +char dequeue(car_file* f){ + f->indice_debut=(f->indice_debut+1)%50; + f-taille--; + return f->tab[(f->indice_debut+49)%50]; +} + + + + +int main(void){ + + + return 0; +} \ No newline at end of file