How can I replicate the output of Turbo C++?
I had already Googled the issue, but in vain.
It suggests to either print scrn and paste or right click, select all, and paste.
I tried both, but neither worked.
The issue is that it simply copies what is on the current screen.
But I want the entire screen from the start.
(Alt+printscrn is also ineffective).
What should I do in this situation?
printScrn
Alt+printScrn
markall
None of them are operational!!
I can't assist you if you require this archaic technique of programming for whatever reason, but I'd want to find a solution.
I tried forwarding the output stream to the file in this manner, but it did not work.
#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
const int max=50;
class dequeue{
int dq[max],r,f,c,x,i;
public:
dequeue();
void insertRear();
void insertFront();
void ...READ MORE
Jul 7, 2022
in C++
by
Nicholas
• 7,760 points
•
1,414 views