1
vote
1answer
79 views

fputs vs. fprintf and double

I need to put out a double value into an file. So for all my other string i have to put out i use fputs because i think and timed it that fputs is faster then fprintf. But if i want to put out the ...
1
vote
2answers
55 views

How do you retrieve the first n lines of a file? (php)

$fileName = file ("gstbook.txt"); $rows = count ($fileName); // $Char is the string that will be added to the file. if ($Char != '') { $Char = str_replace ("\n","<br>",$Char); $Char = ...
2
votes
3answers
212 views

Overwrite to a specific line in c

I have a file of about 2000 lines of text that i generate in my program, every line has the information of an employee and it's outputed like this 1 1 Isaac Fonseca 58 c 1600 1310.40 6 1 0.22 ...
1
vote
1answer
1k views

How to read multiple lines of input from user using fgets and write it into a file using fputs in C?

I wanted to read input from user (multiple lines) and write it into a file using fputs(). Here is my code #include<stdio.h> #include<stdlib.h> int main() { FILE *fp; char s[25]; ...