Download as pdf or txt
Download as pdf or txt
You are on page 1of 14

File Handling in C

File handling in C is the process in which we create, open,


read, write, and close operations on a file. C language
provides different functions such as fopen(), fwrite(), fread(),
fseek(), fprintf(), etc. to perform input, output, and many
different C file operations in our program.
Why do we need File Handling in C?
So far the operations using the C program are done on a
prompt/terminal which is not stored anywhere. The output is
deleted when the program is closed. But in the software
industry, most programs are written to store the information
fetched from the program. The use of file handling is exactly
what the situation calls for.
In order to understand why file handling is important, let us
look at a few features of using files:
 Reusability: The data stored in the file can be accessed,
updated, and deleted anywhere and anytime providing
high reusability.
 Portability: Without losing any data, files can be
transferred to another in the computer system. The risk of
flawed coding is minimized with this feature.
 Efficient: A large amount of input may be required for
some programs. File handling allows you to easily access
a part of a file using few instructions which saves a lot of
time and reduces the chance of errors.
 Storage Capacity: Files allow you to store a large
amount of data without having to worry about storing
everything simultaneously in a program.
Types of Files in C
A file can be classified into two types based on the way the
file stores the data. They are as follows:
 Text Files
 Binary Files

SEQUENTIAL ACCESS FILE


The data items in a sequential access file are arranged one
after another in a sequence.
Each data item can be accessed in the same order in which
they have been stored. It is only
possible to read a sequential file from the beginning. To
access a particular data within the
sequential access file, data has to be read one data at a time,
until the required data is reached.
Reading data from a sequential file can be done using the
various C functions like fscanf(),
fgets(), fgetc(), fread(). Writing data to a sequential file can
be done using the various C functions
like fprintf(), fputs(), fputc(), fwrite().
EXAMPLE PROGRAM:
Finding average of numbers stored in sequential access file
#include <stdio.h>
#include <math.h>
// Read the numbers and return average
float average(FILE *input)
{
float term,sum;
int n;
sum = 0.0;
n = 0;
while(!feof(input))
{
fscanf(input,"%f",&term);
sum = sum + term;
n = n + 1;
}
return sum/n;
}
int main ()
{
FILE *input;
input = fopen("data.txt","r");
avg = average(input);
fclose(input);
printf("The average of the numbers is %f.\n",avg);
return 0;
}

Output:

/* Data in data.txt
10 11 12 13 14 15. */
The average of the numbers is 12.5

Random accessing of files in C language can be done with


the help of the following functions −
 ftell ( )
 rewind ( )
 fseek ( )
ftell ( )
It returns the current position of the file ptr.
The syntax is as follows −
int n = ftell (file pointer)
For example,
FILE *fp;
int n;
_____
_____
_____
n = ftell (fp);
Note − ftell ( ) is used for counting the number of characters
which are entered into a file.
rewind ( )
It makes file ptr move to beginning of the file.
The syntax is as follows −
rewind (file pointer);
For example,
FILE *fp;
-----
-----
rewind (fp);
n = ftell (fp);
printf ("%d”, n);

Output
The output is as follows −
0 (always).
Explore our latest online courses and learn new skills at your
own pace. Enroll and become a certified expert to boost your
career.

fseek ( )
It is to make the file pntr point to a particular location in a file.
The syntax is as follows −
fseek(file pointer, offset, position);

Offset
 The no of positions to be moved while reading or
writing.
 If can be either negative (or) positive.
o Positive - forward direction.

o Negative – backward direction.

Position
It can have three values, which are as follows −
 0 – Beginning of the file.
 1 – Current position.
 2 – End of the file.
Example
 fseek (fp,0,2) - fp moved 0 bytes forward from the end of
the file.
 fseek (fp, 0, 0) – fp moved 0 bytes forward from
beginning of the file
 fseek (fp, m, 0) – fp moved m bytes forward from the
beginning of the file.
 fseek (fp, -m, 2) – fp moved m bytes backward from the
end of the file.
Errors
The errors related to fseek () function are as follows −
 fseek (fp, -m, 0);
 fseek(fp, +m, 2);

Command Line Arguments in C

The most important function of C is the main() function. It is


mostly defined with a return type of int and without
parameters.
int main() {
...
}
We can also give command-line arguments in C. Command-
line arguments are the values given after the name of the
program in the command-line shell of Operating Systems.
Command-line arguments are handled by the main() function
of a C program.
To pass command-line arguments, we typically define main()
with two arguments: the first argument is the number of
command-line arguments and the second is a list of
command-line arguments.
Syntax
int main(int argc, char *argv[]) { /* ...
*/ }
or
int main(int argc, char **argv) { /* ...
*/ }
Here,
 argc (ARGument Count) is an integer variable that
stores the number of command-line arguments passed
by the user including the name of the program. So if we
pass a value to a program, the value of argc would be 2
(one for argument and one for program name)
 The value of argc should be non-negative.
 argv (ARGument Vector) is an array of character
pointers listing all the arguments.
 If argc is greater than zero, the array elements from
argv[0] to argv[argc-1] will contain pointers to strings.
 argv[0] is the name of the program , After that till
argv[argc-1] every element is command -line arguments.
For better understanding run this code on your Linux
machine.
Example

The below example illustrates the printing of command line


arguments.
// C program named mainreturn.c to
demonstrate the working
// of command line arguement
#include <stdio.h>

// defining main with arguments


int main(int argc, char* argv[])
{
printf("You have entered %d
arguments:\n", argc);

for (int i = 0; i < argc; i++) {


printf("%s\n", argv[i]);
}
return 0;
}

Output
You have entered 4 arguments:
./main
geeks
for
geeks

for Terminal Input


$ g++ mainreturn.cpp -o main $ ./main
geeks for geeks
Note: Other platform-dependent formats are also allowed by
the C standards; for example, Unix (though not POSIX.1) and
Microsoft Visual C++ have a third argument giving the
program’s environment, otherwise accessible through getenv
in stdlib.h. Refer C program to print environment variables for
details.
Properties of Command Line Arguments in C
1. They are passed to the main() function.
2. They are parameters/arguments supplied to the
program when it is invoked.
3. They are used to control programs from outside instead
of hard coding those values inside the code.
4. argv[argc] is a NULL pointer.
5. argv[0] holds the name of the program.
6. argv[1] points to the first command line argument and
argv[argc-1] points to the last argument.
Note: You pass all the command line arguments separated by
a space, but if the argument itself has a space, then you can
pass such arguments by putting them inside double quotes “”
or single quotes ”.
Example

The below program demonstrates the working of command


line arguments.
// C program to illustrate
// command line arguments
#include <stdio.h>

int main(int argc, char* argv[])


{
printf("Program name is: %s",
argv[0]);

if (argc == 1)
printf("\nNo Extra Command Line
Argument Passed "
"Other Than Program
Name");

if (argc >= 2) {
printf("\nNumber Of Arguments
Passed: %d", argc);
printf("\n----Following Are The
Command Line "
"Arguments Passed----");
for (int i = 0; i < argc; i++)
printf("\nargv[%d]: %s", i,
argv[i]);
}
return 0;
}
Output in different scenarios:

1. Without argument: When the above code is compiled and


executed without passing any argument, it produces the
following output.
Terminal Input
$ ./a.out

Output
Program Name Is: ./a.out
No Extra Command Line Argument Passed
Other Than Program Name
2. Three arguments: When the above code is compiled and
executed with three arguments, it produces the following
output.
Terminal Input
$ ./a.out First Second Third

Output
Program Name Is: ./a.out
Number Of Arguments Passed: 4
----Following Are The Command Line
Arguments Passed----
argv[0]: ./a.out
argv[1]: First
argv[2]: Second
argv[3]: Third
3. Single Argument: When the above code is compiled and
executed with a single argument separated by space but inside
double quotes, it produces the following output.
Terminal Input
$ ./a.out "First Second Third"

Output
Program Name Is: ./a.out
Number Of Arguments Passed: 2
----Following Are The Command Line
Arguments Passed----
argv[0]: ./a.out
argv[1]: First Second Third
4. A single argument in quotes separated by space: When
the above code is compiled and executed with a single
argument separated by space but inside single quotes, it
produces the following output.
Terminal Input
$ ./a.out 'First Second Third'

Output
Program Name Is: ./a.out
Number Of Arguments Passed: 2
----Following Are The Command Line
Arguments Passed----
argv[0]: ./a.out
argv[1]: First Second Third

You might also like