Complete/Modify the code satisfying the following: (put comments pls) in C++, pls put comments in the code 1. Ask for a phrase to be converted to a binary stream. Eg. Input phrase --> Hi Guys! Binary Stream--> 0100100001101001001000000100011101110101011110010111001100100001 1 character must be equal to 8bits. 2. Save the binary stream into a text file. 3. Create 5 unique phrases to be converted as your data and results. Here's the code: #include #include main () { FILE * fp; fp = fopen ("testing.txt", "w+"); printf("Hi! Nice to meet you!\n"); fprintf(fp, "Hi! Nice to meet you!\n"); int cnt; for(cnt=1;cnt<=10;cnt++) { fprintf(fp, "Counting %d!\n",cnt); } //fprintf(fp, "%s %s %s %d", "We", "are", "in", 2012); fclose(fp); }
Complete/Modify the code satisfying the following: (put comments pls)
in C++, pls put comments in the code
1. Ask for a phrase to be converted to a binary stream.
Eg. Input phrase --> Hi Guys!
Binary Stream--> 0100100001101001001000000100011101110101011110010111001100100001
1 character must be equal to 8bits.
2. Save the binary stream into a text file.
3. Create 5 unique phrases to be converted as your data and results.
Here's the code:
#include <stdio.h>
#include <stdlib.h>
main ()
{
FILE * fp;
fp = fopen ("testing.txt", "w+");
printf("Hi! Nice to meet you!\n");
fprintf(fp, "Hi! Nice to meet you!\n");
int cnt;
for(cnt=1;cnt<=10;cnt++)
{
fprintf(fp, "Counting %d!\n",cnt);
}
//fprintf(fp, "%s %s %s %d", "We", "are", "in", 2012);
fclose(fp);
}
![](/static/compass_v2/shared-icons/check-mark.png)
Step by step
Solved in 3 steps with 5 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Concepts of Database Management](https://www.bartleby.com/isbn_cover_images/9781337093422/9781337093422_smallCoverImage.gif)
![Prelude to Programming](https://www.bartleby.com/isbn_cover_images/9780133750423/9780133750423_smallCoverImage.jpg)
![Sc Business Data Communications and Networking, T…](https://www.bartleby.com/isbn_cover_images/9781119368830/9781119368830_smallCoverImage.gif)