System calls for Clearing Screen

System calls for Clearing Screen

Question:
Right now i’m still learning Visual C++, version 4.0. It may seem like the easiest thing in batch or Basic languages, but I can’t figure out how to clear the screen in C++. The program I’m working on is DOS based. Also, can you help me with System Calls? (like running an external program from a program)? thnx alot, Iappreciate your help.

Answer:
The very thing that gives C its portability is the fact that it is not tied to any hardware. Although the flexibility is certainly there, it is certainly harder to clear the screen, for example, than it is in a language such as Basic.

Depending on your compiler, you could use syntax similar to the following. This cls() function uses int86 to call the ROM-BIOS services and clear the screen.

#include void cls(){   union REGS regs;   regs.h.ah = 0x06   // ROM-BIOS scroll service   regs.h.al = 0      // Number of lines to scroll (0 clears)   regs.h.bh = 0x07   // Color of cleared area   regs.h.ch = 0      // Top row of area to clear   regs.h.dh = 24     // Bottom row of area to clear   regs.h.cl = 0      // Left column of area to clear   regs.h.dl = 79     // Right column of area to clear   int86(0x10,®s,®s); // Call ROM BIOS}

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of