answersLogoWhite

0

What is file structure in c?

Updated: 8/10/2023
User Avatar

Wiki User

15y ago

Best Answer

You mean source-file? The simplest format is one single main function:

int main (void)

{ puts ("Hello, World"); return 0; }

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

15y ago

A file is a sequence of bytes.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is file structure in c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the structure of c prgramming?

A header file , a main part and a body


What is basic structure of file handling in c language?

open, read/write, close


How can save output of c programs throw command?

C does not support try, catch, and throw. In C++, you can save the output to a file, or to some memory structure that would be displayed in a catch block.


What is a cs file?

It's a C# file. C Sharp File


What is mean by file in c?

A file in C means a file found in your computer's C Drive. Start > My Computer > C Drive


What deletes the entire file except the file structure?

ZAP


What is Structure of file system in windows?

What is structure of window in windows XP


What is a file structure?

it is a kind of frog


What is a 'D' file as opposed to a 'C' file?

There is no such thing as a standard "D" or "C" file. Please restate the question.


What is the structure of carbon sub-oxide?

Formula is C3O2, structure is:O=C=C=C=O


What is the difference between fseek and lseek?

lseek is a system call, but fseek is a C function belonging to the ANSI C standard library, and included in the file stdio.h lseek uses file descriptor (return by open system call), but fseek uses pointer to FILE structure (return by fopen ANSI C library function) (though file desctor and FILE * can be used interchangeably several times). System calls are to communicate directly with an operating system. Generally, system calls are slower than normal function calls.


How many file types are avilable in C?

You can open any file with C, since it does not distinguish between file types. It's the way you read from the file.