answersLogoWhite

0

How do you createe a file using c language?

Updated: 8/20/2019
User Avatar

Wiki User

11y ago

Best Answer

Use function open or creat or fopen.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you createe a file using c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can a notepad file be read using C language?

sure


Convert .exe file to .sis formate using C language?

love


How do you search a particular file using c language?

Search for a file, or search in a file?The former is OS-dependent, for Windows use functions FindFirstFile and FindNextFile.


How do you read the number of capital letters in a input file using c language?

#include <stdio.h> #include <ctype.h> ... int caps = 0; int c; file = fopen ("InputFile", "r"); while ((c = fgetc (file)) != EOF) { if (isupper (c)) ++caps; } fclose(file); ...


Is there any possibility to hide a text file into an audio file using c plus plus?

i want full c language tutorial for our self study....with an easy mtho..and example also.....


What is the difference between using angular brackets in C language and double quotes in Cpp language to enclose header files?

When you includes any header file using "" that time compiler try to locate this file first from your program's local directory and then from library. But if you include the .h file using <> then compiler assumes you are including some library file.


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 is Compilation Process?

In simple words, it is the conversion of a high level language to an assembly level language. In C, it is the conversion of a .c file to a .s file


C language using list?

C is a programming.it is defined by the c language


How to find out the newest file in a folder using C language?

Platform-dependent. For linux: opendir/readdir/closedir + stat. For Windows: FindFirstFile/FindNextFile


Using doublelinked list insertion sort in c language?

using doublelinked list insertion sort in c language


What is library file in C language?

It is a collection of various fuction in which we can define many function in Libaray file .