Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Borland C++ 2.x ( with Turbo C ) - <b>delline() deletes a line</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 delline()               Deletes a Line

 #include   <conio.h>

 void       delline(void);

    delline() deletes the entire line in the current text window that
    contains the cursor. All lines below it are moved up one line.

       Returns:     Nothing.

   Portability:     IBM PC and compatibles only.

   -------------------------------- Example ---------------------------------

           #include <conio.h>

           main()
           {
               int x, y;

               for (x = 0; x < 20; x++) {
                   for (y = 65; y < 91; y++)
                       printf("%c",y);
                   printf("\n");
               }
               gotoxy(10,15);
               delline();
           }


See Also: clreol() insline() window()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson