7. Identify the correct argument for the function call
fflush() in ANSI C:
A)stdout
B)stdin
C)stderr
D)All the above
Answers were Sorted based on User's Feedback
regarding pointers concept
How pointer is benefit for design a data structure algorithm?
int far *near * p; means
write a program for even numbers?
What is the difference b/w main() in C language and main() in C++.
how to find the binary of a number?
Write a code to generate divisors of an integer?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
Explain the difference between ++u and u++?
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
Given a number N, product(N) is the product of the digits of N. We can then form a sequence N, product(N), product(product(N))… For example, using 99, we get the sequence 99, 99 = 81, 81 = 8. Input Format: A single integer N Output Format: A single integer which is the number of steps after which a single digit number occurs in the sequence. Sample Test Cases: Input #00: 99 Output #00: 2 Explanation: Step - 1 : 9 * 9 = 81 Step - 2 : 8 * 1 = 8 There are 2 steps to get to this single digit number. Input #01: 1137638147
what is the advantage of using SEMAPHORES to ORDINARY VARIABLES???