console I/O functions means
a) the I/O operations done on disk
b) the I/O operations done in all parts
c) the input given through keyboard is displayed VDU screen
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
What does != Mean in c?
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
What is the best way to store flag values in a program?
What is array of structure in c programming?
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
Why do we need volatile in c?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Difference between linking and loading?
Find greatest number out of 10 number without using loop.
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
Why doesnt this code work?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.