User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







c:conio.h:delline

delline

description of delline

delete the line containing the cursor and move all lines below it one line up.

#include<stdio.h>
#include<conio.h>
 
int main(void)
{
 
   printf("This line will be deleted ... press a key.");
   getch();
   delline();
   printf("Line deleted successfully.");
   getch();
   return 0;
}

output of delline c example

1

  This line will be deleted ... press a key

2

  Line deleted successfully.

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/conio.h/delline.txt · Last modified: 2024/02/16 01:05 (external edit)

Impressum Datenschutz