Why c is faster than c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is a floating point in c?
Explain the difference between fopen() and freopen().
palindrome for strings and numbers----Can anybody do the prog?
6 Answers CTS, TCS, Vipro Lifescience Pvt,
create an SINGLE LINKED LISTS and reverse the data in the lists completely
Is it better to use malloc() or calloc()?
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 u print a message without using any library function in c
what is the use of fflush() function?
What does c in a circle mean?
write a program to generate 1st n fibonacci prime number
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
How arrays can be passed to a user defined function