/small-things

A collection of small code (snippets) that does not belong in a standalone repository

Primary LanguageC++

small-things

This repo contains some small code examples. There is probably absolutely nothing to learn from here except maybe for newcomer programmers. I worked on them on different stages of my programming journey. This repo will serve as sort of an archive for some very little things of mine.


Small descriptions of the projects:

In data transmission, an algorithm for sending packets (frames) is Sliding Window or Go-Back-N. This program will simulate a system where a sender is sending frames and a receiver is receiving them.

This was an assignment for CSE107 (OOP course), that's why it uses OOP things :P. It's fairly straightforward. You can save information about school teacher and students in a text file (not the most efficient, I know) and view/search on them. There is option to add new info too.

Play a game of hangman in console. Choose a category, you'll get a random word from that category. Now guess a letter. If its right, all occurances of this letter will get filled in the word. If it's wrong, you'll lose a life. Continue, untill have no life or have guessed all the letters correctly.

Generate an image in png format from a given text.