Hi,
I want to do something like this.
I have a file File.c
File.c
# include <stdio.h>
-------------------------->here struct B and its parameters should be inserted when i get it on next iteration.
typedef Struct
{
B b1; --->this struct i will get on next iteration.
}A;
I am writing to the file using filestreams.
Please let me know if there is a way to insert data into the file.
Now when i use seek, the struct A is getting overwritten.