Explain what is a stream?
Answer / Sandeep Kumar Singh
In C, a stream refers to an abstract sequence of bytes used for input or output operations. Standard streams in C include stdin (standard input), stdout (standard output), and stderr (standard error). Streams can be associated with files using functions like fopen().
| Is This Answer Correct ? | 0 Yes | 0 No |
Why clrscr is used in c?
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
Explain how do you determine the length of a string value that was stored in a variable?
What is the difference between int main and void main?
how to find sum of 5 digits in C?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
What are static variables, and where are they stored?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
What is the difference function call by value & function call by reference?
Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)