Decoration question >>

Jun 3, 2013 at 10:26am
Hi guys ... i have that program that i need to write a description about what it do before starting the operations of the code.
I want a function or a code that makes that description disappear and the program starting point appears instade of it ..
Any help...
Jun 3, 2013 at 4:48pm
1
2
3
4
5
6
7
8
9
/**
    CS-11 Asn 2
    checks.cpp
    Purpose: Calculates the total of 6 checks

    @author Ed Parrish
    @version 1.0 9/02/07
*/

you mean something like this?
It's called a command block btw =)
It allows you to put your name course number whatever you want.
It does not affect your code in any way.
Last edited on Jun 3, 2013 at 4:53pm
Jun 3, 2013 at 5:23pm
It's called a command block btw =)

I suspect you meant "comment block"?
Jun 3, 2013 at 5:26pm
whoops yeah lol idk why i said command.. -_-
Jun 3, 2013 at 5:29pm
I suspect the actual question is "how to clear the screen"?
Jun 3, 2013 at 5:58pm
Use
system ("CLS");
to clear the screen.
Topic archived. No new replies allowed.