answersLogoWhite

0

What is file structures in C plus plus?

Updated: 8/18/2019
User Avatar

Wiki User

9y ago

Best Answer

As far as C++ is concerned files do not have structures, they are simply raw data streams. It's entirely down to the programmer to determine what structures exist within the file and to interpret the data accordingly. C++ cannot do it for you.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

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

How do stuctures in C and C plus plus differ?

Structures in C and C++ differ in that C structures do not have an automatic typdef associated with them.


How do you include classes and structures in header files in c plus plus?

Classes and structures can be put in a header file the same way you would use them in a main program; the only difference is that they are placed in a separate file, called a header file. Then, after creating a new file, include that new file with the definition by the use of the preprocessor #include statement.


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 open a file in c plus plus?

fopen()


What are the three selection structures available in C plus plus?

if while switch


Is there a file concept in c plus plus?

No. The standard does not define nor require a file concept.


Can you rewrite a cuda file in c c plus plus language?

Yes, you can rewrite a cuda program originally written in c in c plus plus.


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.


Explain any six file commands in C plus plus?

There's no commands in C++.


Examples on structures of C programming?

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


How do you concatinate two files in c plus plus?

Copy the first file then append the second file to the copy.


How do you pass structures as a parameter to the functions in c plus plus?

Put their names into the parameter-list.