Why static is used in c?
What is getch 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
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
What is else if ladder?
how can i get this by using for loop? * ** * **** * ******
Ow can I insert or delete a line (or record) in the middle of a file?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
write a function which accept two numbers from main() and interchange them using pointers?
How can I increase the allowable number of simultaneously open files?
what is the use of ~ in c lang?????
What is external and internal variables What is dynamic memory allocation what is storage classes in C
Is boolean a datatype in c?