Coders Packet

Packets submitted by Rati Gupta

C++ program to print a star after a count down

In this C++ program, a star is printed after the desired countdown given by the user. This star has been created with the help of several FOR loops.

Implementation of RSA algorithm and Caesar Cipher in C++

This C++ program is to encrypt as well as decrypt a string. In this program, two techniques of cryptography are used for encryption and decryption: 1. Caesar Cipher 2. RSA algorithm

C++ program to replace all the occurrences of a specific word in a text file

This C++ program counts all the occurrences of a specific word in a text file and finds their positions. Then, replaces all of them with another word.