What is typedf?
No Answer is Posted For this Question
Be the First to Post Answer
there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?
Why we use conio h in c?
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 find that no is int or float?
What are preprocessor directives?
what do u mean by Direct access files? then can u explain about Direct Access Files?
explain what is an endless loop?
What is static volatile in c?
how to do in place reversal of a linked list(singly or doubly)?
Is c++ based on c?
Is c still used?
What is a loop?