answersLogoWhite

0


Best Answer

printer

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the predefined stream objects in c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How constant are used in c?

it is predefined function


Is main a predefined function in c?

yes


What are predefined codes?

Predefined codes or the predefined functions are the codes small or large codes which are predefined by the maker of the language. In C++ the predefined codes can be included in the program by the header files. These codes are placed in files and functions could be used to access them. Like a simple console Code to output "Hello World" uses a predefined code cout


What is premitive?

In C program, premitive is a kind of data type which is predefined in C programming language.


Create a function for power in C?

Not necessary, there is a predefined 'pow' function.


What is stream pointer in c?

C does not have stream pointers.


How is file handling applied in c plus plus?

File handling is handled by input stream objects (ifstream) and output stream objects (ofstream), or bi-directional streams (fstream). These classes are derived from istream and ostream. See related links for more information on these classes.


In c programming is main predefined or user defined?

main is predeclared and user defined.


What is a perdefined words in TURBO C?

there are many predefined words in c.. some are void,datatypes,printf,scanf etc


Which is the function which destroys objects in C?

No objects in C. For C++, it is destructor.


What is header function definition in c language?

No predefined 'header' function in the standard C libraries. There are header files, if that's what you mean.


What is a Generic Function in c plus plus?

Predefined functions are built-in functions that perform standard operations and that generally do not depend on any classes. A predefined void function is simply a predefined function that has no return value. An example of a predefined void function is the abort() function which typically has the following signature: void abort(void);