answersLogoWhite

0

What is mean by file in c?

Updated: 4/28/2022
User Avatar

Abdulahad

Lvl 1
15y ago

Best Answer

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

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

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

What does cwindowsexedawevdll mean?

it is a file (C/windows/exe/daw/evdll) is sum random file :)


What is a cs file?

It's a C# file. C Sharp File


How can you read string in C language?

You mean read from file/standard input? With function fgets.


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 file structure in c?

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


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.


How do you create a header file and implementation of code in another c file and both should be retrieved by another .c file?

tanga


Can C scripting be incorporated into an HTML file and if so how?

No. C Scripting can not be incorporated into an HTML file.


Where can you find my computer file on my computer?

input the following into the URL: *C:\* the Hard Drive (C:\) If you mean all of the programs that you've installed then (C:\Program Files), hope I've helped


How do you create .exe file in c plus plus?

You can create an exe-file from your C++ source, if you have a compiler.


How do you write c file arguments?

Using parameters argc and argv, and library functions fopen, fprintf, fclose


What is a statement use to open data file in c?

FILE* file; file = fopen("some-file.dat");