top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to delete a specific line from a input (text file) using C program?

0 votes
688 views
How to delete a specific line from a input (text file) using C program?
posted Aug 27, 2014 by anonymous

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button
U have to use an intermediate file to achieve this.

Similar Questions
+7 votes

Can anybody suggest how can we create a program in C to know the last modification date of any file?

+1 vote

Say you are given

int a[ ] = {1,2,3,4};
int b[ ] = {4,3,2,1};
int S = 5;

Now the task is to find all pairs of two number which adds up to S (One number from a and other number from b).

...