Write a program to check armstrong number in c?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
A stack can be implemented only using array?if not what is used?
How to print %d in output
What is the difference between formatted&unformatted i/o functions?
What's the difference between constant char *p and char * constant p?
How can I increase the allowable number of simultaneously open files?
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
Does c have class?
What is difference between %d and %i in c?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
What are the types of bitwise operator?