Thread: Clear Screen Function?

  1. #1
    Registered User
    Join Date
    May 2003
    Posts
    15

    Clear Screen Function?

    Is there a clear screen function similar to that of CLS in Qbasic?

  2. #2
    Confused Magos's Avatar
    Join Date
    Sep 2001
    Location
    Sweden
    Posts
    3,145
    Check out the FAQ
    MagosX.com

    Give a man a fish and you feed him for a day.
    Teach a man to fish and you feed him for a lifetime.

  3. #3
    Registered User
    Join Date
    May 2003
    Posts
    3

    Clear Screen = clrscr();

    just use clrscr();

    Like so:
    ----------------------------------------------------------------------------------
    #include<stdio.h>

    main()
    {
    clrscr();
    printf("Hello World!");

    }

  4. #4
    ATH0 quzah's Avatar
    Join Date
    Oct 2001
    Posts
    14,826

    Re: Clear Screen = clrscr();

    Originally posted by jazy921
    just use clrscr();

    Like so:
    You can teach a man to... Aw $$$$ it. It's just not worth the time any more.

    Quzah.
    Hope is the first step on the road to disappointment.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 4
    Last Post: 05-13-2011, 08:28 AM
  2. Compiling sample DarkGDK Program
    By Phyxashun in forum Game Programming
    Replies: 6
    Last Post: 01-27-2009, 03:07 AM
  3. Calling a Thread with a Function Pointer.
    By ScrollMaster in forum Windows Programming
    Replies: 6
    Last Post: 06-10-2006, 08:56 AM
  4. Dikumud
    By maxorator in forum C++ Programming
    Replies: 1
    Last Post: 10-01-2005, 06:39 AM
  5. Interface Question
    By smog890 in forum C Programming
    Replies: 11
    Last Post: 06-03-2002, 05:06 PM