Skip to content

Commit

Permalink
the next commit
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWatcher01 committed Oct 19, 2023
1 parent fd6c69c commit f397d8b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
18 changes: 9 additions & 9 deletions functions_nested_loops/0-putchar.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
*/
int main(void)
{
putchar('_');
putchar('p');
putchar('u');
putchar('t');
putchar('c');
putchar('h');
putchar('a');
putchar('r');
putchar('\n');
_putchar('_');
_putchar('p');
_putchar('u');
_putchar('t');
_putchar('c');
_putchar('h');
_putchar('a');
_putchar('r');
_putchar('\n');

return (0);
}
5 changes: 3 additions & 2 deletions functions_nested_loops/1-alphabet.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <stdio.h>
#include "main.h"
/**
* print_alphabet - Script prints alphabet, in lowercase.
* @void
Expand All @@ -11,9 +12,9 @@ void print_alphabet(void)

while (letter <= 'z')
{
putchar(letter);
_putchar(letter);
letter++;
}

putchar('\n');
_putchar('\n');
}
1 change: 1 addition & 0 deletions functions_nested_loops/8-24_hours.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <stdio.h>
#include "main.h"
/**
* jack_bauer - function list every minute 00:00 to 23:59.
*
Expand Down

0 comments on commit f397d8b

Please sign in to comment.