Natural selection is testing this #Altcoins season 🌊. In this cycle, many are once again diving deep into research, searching for “the best” after Bitcoin & @Joseinnewworld makes waves 124 #NFTs — Wow, a strong signal for those still weighing their moves. #eCash $XEC #CryptoNews pic.twitter.com/GB3dRvH01U
— NFToa (@nftoa_) September 26, 2025
Assalamu'alaikum. Mr. Wan, I would like to ask: in Borland C++ we use clrscr() to clear the console screen. What should we use if we want to clear the screen in Dev C++? Thank you.
This question was raised by a member named Maze Muke.
Answer
It's simple, bro. Let me show you the following example code:
#include <stdlib.h> // <- Include this library in the header
void main() {
system("cls"); //<-- Use this command to clear the screen
}
