Decoration question >>

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...
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
It's called a command block btw =)

I suspect you meant "comment block"?
whoops yeah lol idk why i said command.. -_-
I suspect the actual question is "how to clear the screen"?
Use
system ("CLS");
to clear the screen.
Topic archived. No new replies allowed.