answersLogoWhite

0

There is a quite a lot of things you can do with files; some of them are: open, read, write, close, delete, copy, move, rename, concatenate, sort...

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Library functions in C programming?

They are very important. The most commonly used functions are the string and file handling ones.


How do you refresh stack using library functions in C programming?

What do you mean by stack-refreshing? Anyway, there are no stack handling functions in the standard C library.


You want a file handling c program?

yes


What is definition of file handling in c plus plus?

File is a place where information or data is stored. we make use of some of the file-handling functions in c like: fopen()-for opening a file. fclose()-to close a file. Every file being opened for any operations like: "r"- Read-Only mode. "w"-Write-only mode. "a"-append mode. "r+"-read+write mode. "w+"-write+read mode. "a+"-read+append mode. We should make use of FILE pointer ,in order to perform any such operations on the files. There are many input and output functions used along with files. fgetc() fgets() fscanf() fputc() fprintf() fputs() fseek() rewind() File handling is used to read or write a file without directly opening it.its contents are opened in another files by using above specified commands in c++ programming for file handling we have to use a header file but in c noheader file regarding to file handling is required


What is bak in C programming?

Nothing, but as a file-extension it means backup.


What is a scatter file in c or c double plus programming?

helps you to organise the memory as you want


What do you mean by c language?

C is a programming language.


Examples on structures of C programming?

'struct tm' (time.h) and 'FILE' (stdio.h)


Wap to copy one file to another in C programming?

#include<stdio>


What is a scatter file in c or c plus plus programming?

Scatter File is a linker script file used by RVCT/Keil for ARM processors. It is used by arm linker.


How do you stop writing a file in c by using ctrl z in cpp?

Ctrl+Z mean EOF in WinDos, no matter what programming language you are using.


What are the four file commands required to read and write to a file in C programming?

fopen, fread, fwrite, fclose