Skip to content
Advertisement

Rewrite at the beginning of the file

I was trying to rewriting text at beginning of file but facing the following:

The header file is test.h:

JavaScript

The source file is test.c :

JavaScript

The main file is main.c:

JavaScript

The make file is:

JavaScript

The out put was expected is:

JavaScript

But it is replacing first few characters of the first line.

JavaScript

Where I am going wrong?

Advertisement

Answer

The output is perfectly normal.

You expect you can insert characters at the beginning of the file. This is not possible. Instead your program simply overwrites the first 2 characters of the file hence the output you get.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement