What is storage class?
No Answer is Posted For this Question
Be the First to Post Answer
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
please explain every phase in the "SDLC" in the dotnet.
What is strcmp in c?
What is the difference between text files and binary files?
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?
Convert the following expression to postfix and prefix (A+B) * (D-C)
WHAT IS FLOAT?
when to use : in c program?
What is the purpose of main( ) in c language?
How can I remove the leading spaces from a string?