What is structure of c program?
No Answer is Posted For this Question
Be the First to Post Answer
largest Of three Number using without if condition?
write a function which accept two numbers from main() and interchange them using pointers?
wap in c to accept n number display the highest and lowest value
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
write a c program to convert fahrenheit to celsius?
What does do in c?
how to construct a simulator keeping the logical boolean gates in c
what r the cpu registers r ther?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
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 can I manipulate strings of multibyte characters?
What is the use of a semicolon (;) at the end of every program statement?