i m using fgets to read line form .txt file. i m passing an array as the first argument. different lines fill in different amount of space in the array, but ...
I'm trying to write a program that reads a certain amount of characters from a file name given from command line. Here is what I have:
#include <stdio.h> int main(int argc, char **argv) { ...