Write a command line program for line editor of practcal slip
/* slip-7 1. Write a command line program for line editor. The file to be edited is taken as command line argument, an empty file is opened for editing if no argument is supplied. It should display '$' prompt to accept the line editing commands. Implement the following commands. i) a - to append ii) i n - to insert after nth line iii) c n1 n2 - to copy line n1 at n2 position iv) c n1, n2 n3 - to copy range of line at n3 [30 marks] */ #include<stdio.h> #include<conio.h> #include<string.h> #define new...