Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
No Answer is Posted For this Question
Be the First to Post Answer
Do you know the difference between malloc() and calloc() function?
What is an array? What the different types of arrays in c?
cavium networks written test pattern ..
what is the function of pragma directive in c?
O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N
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
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
How can I ensure that integer arithmetic doesnt overflow?
what are the advantages of a macro over a function?
write a program of bubble sort using pointer?