Skip to content

Commit

Permalink
today
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdoe committed Oct 6, 2023
1 parent e2a0f16 commit 79bc8f9
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
Binary file added screenshots/game-358.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions week-048.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,25 @@ I am attaching the photos of some of the work just for the record:
Play a round of easy mode projekt:overflow https://punkx.org/overflow

![game-357.jpg](./screenshots/game-357.jpg "game 357 screenshot")

## [DAY-358] buffer overflow

Play a round of easy mode projekt:overflow https://punkx.org/overflow

![game-358.png](./screenshots/game-358.png "game 358 screenshot")

## [DAY-359] scanf; printf

Get 4 numbers from the user and print them.

```
#include <stdio.h>
int main(void){
int number1, number2, number3, number4;
printf("Choose 4 numbers: ");
scanf("%d %d %d %d",&number1,&number2,&number3,&number4);
printf("You chose: %d %d %d %d\n",number1,number2,number3,number4);
return 0;
}
```

0 comments on commit 79bc8f9

Please sign in to comment.