What are the application of void data type in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program in C to reverse a number by recursive function?
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.
How many keywords are there in c?
What is a constant?
Explain how can I prevent another program from modifying part of a file that I am modifying?
What is wrong with this declaration?
regarding pointers concept
Method Overloading exist in c ?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
How will you divide two numbers in a MACRO?
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
how to implement stack work as a queue?