Saturday, 24 December 2011

delline

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

No comments:

Post a Comment