answersLogoWhite

0


Best Answer

File organization is the methodology which is applied to structured computer files. Files contain computer records which can be documents or information which is stored in a certain way for later retrieval. File organization refers primarily to the logical arrangement of data (which can itself be organized in a system of records with correlation between the fields/columns) in a file system

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is mean by file organization in data structure of c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Can a data type be called a data structure?

Yes, they can be used interchangeably, but they usually mean separate things. A type of data is something like an integer, or string. While a data structure usually refers to a linked list or tree of integers or strings.


How can insert a data into file in c?

You insert data into a file by copying the file to a temporary file up to the point of insertion, then copying the data to be inserted, then copying the balance of the original file. After closing the temporary file you delete the original file and rename the temporary file back to the original file's name.


What do you mean by Direct file organization?

A relatively small project that is similar to past effort might be best accomplished using the?


What is file structure in c?

You mean source-file? The simplest format is one single main function: int main (void) { puts ("Hello, World"); return 0; }


What is the difference between a Database and a Data Structure?

A data structure is the internal representation of the data. It may be a list, a linked list, a stack, heap or just about anything else that can be immagined and represented internal to the machine. For example, the data structure may be a linked list of control blocks for a specific product that is progressing through an automated machining facility. The control block may include information regarding the product, the tolerances, date/time that the product entered the different machining centers and the inspectors who verified the product at different points along the way. The data structure (control block) may or may not be stored in a database during the manufacturing process. Some application engineers may determine that the data needs to remain in memory to address real-time issues and for speed concerns. On the other hand, the data may be handed off to a database application for archiving. A well defined database links the similar data elements together and provides lookup "keys" that allow subsequent users to view and manipulate the data.

Related questions

What do you mean by a structure?

the word structure mean mode of building ,construction ,or organization


What do you mean by non primitive data structure in C programming?

What do you mean by searching in data structure in C.?


What does the term file mean in data bases?

it means file


What is the set data structure?

MEAN


What does data items mean?

Data means chunk of information. When lots of data store in single space then it's called file.


What does it mean by organizational structure of an office?

Meaning . the whole office area (from receptionist to the President ) the structure (what makes it run) organization. I tried...


What does external structure mean?

External structure is a term used to describe a certain type of asset. An external structure is a relationship that you must rely on that is outside of your own organization.


What does orderly internal structure mean?

What i have been told orderly structure pertaining to a pill bug means to have everything connect together


A database is self describing what does this mean?

A self-describing database is one that contains metadata or documentation within the database itself that defines the structure, organization, and relationships of the data. This allows users and applications to understand and manipulate the database without relying on external resources or knowledge.


What does the teme intrapeneur mean?

the ability of someone withing an organization or structure to create new possibilities


Can a data type be called a data structure?

Yes, they can be used interchangeably, but they usually mean separate things. A type of data is something like an integer, or string. While a data structure usually refers to a linked list or tree of integers or strings.


What is mean by stream in file?

A stream is how a program reads to and writes from a file. When a program needs to create or edit a file, it opens up a "stream" to the file, "streams" the intended data to the file, and then saves it before closing the stream.