I just downloaded Dev c++ because the complier i was using (TC LITE) didn't allow me to make exe files. It also wasn't windows based which is a pain editing in.
C++ What i am trying to do is get it to use clrscr(). I was looking at http://www.bloodshed.net/faq.html#6 and i found this:Screen

Clear Output Screen using C program. Clear Output Screen - When we run a program, previous output or other command prompt/ Linux Terminal command's output appear there. We can clear the output screen using C program. Functions which are used to clear output screen depend on the compiler, commonly used functions/methods are. How to clear screen in c? I am using dev c. Posted by 3 years ago. How to clear screen in c? I am using dev c. Save hide report. The command to compile is in the commit message. To start nnn in regex filter mode.


12. I am having problems using Borland specific functions such as clrscr()
Include conio.h to your source, and add C:Dev-C++Libconio.o to 'Further Object Files' in Project Options (where C:Dev-C++ is where you installed Dev-C++)
I think that has soemthing to do with it, but i can't figure out how to do that. Does anyone know what that means or how i can go about doing this. I was looking around here and saw that i can use system('cls'); to clear the screen but it says it isn't a very good way of doing it. I would rather do it the good way. Thanks for your help.

Function 'clrscr' (works in Turbo C++ compiler only) clears the screen and moves the cursor to the upper left-hand corner of the screen. If you are using the GCC compiler, use system function to execute the clear/cls command.

C programming code for clrscr

#include<stdio.h>
#include<conio.h>

int main()
{
printf('Press any key to clear the screen.n');

getch();

clrscr();

printf('This appears after clearing the screen.n');
printf('Press any key to exit..n');

Traktor however, is a completely different story. Each TRAKTOR product contains T2 Technology providing power and simplicity in both their software and associated hardware.TRAKTOR’s intelligent features allow for easy remixing of tracks on the fly; and you can switch any deck to a Sample Deck and load up to four loops or one-shot samples each, or 16 in total. It’s a DJ-ing and track mixing application and its available for both Windows and Mac, and quite frankly, it floored me.TRAKTOR is a hardware and software mixing solution that offers DJs a wide range of solutions for spinning at the club, at home or any other venue. Its new Loop Recorder can record loops from mixer channels, master out or audio interface inputs, while you mix in more than 30 performance effects, including Tape Delay and Bouncer.Pros: Complete music mixing solution, incorporates both hardware and software.Cons: Expensive.Conclusion: Traktor is truly amazing. Traktor pro pc. I've looked at some mixing software over the past few months, but none have really 'sent' me.

getch();
return0;
}

In the program, we display the message (Press any key to clear the screen) using printf and ask the user to press a key. When the user presses a key screen will be cleared and another message will be printed. Function clrscr doesn't work in Dev C++ compiler. Use the cleardevice function instead of clrscr in graphics mode.

Clear screen in C without using clrscr

#include <stdio.h>
#include <stdlib.h>

How To Use Clear Screen Command In Dev C++

int main()
{
printf('Press any key to clear the screenn');
getchar();

C++ Clear Screen Code

system('clear');// For Windows use system('cls');
return0;
}