Write a program that can show the multiplication table.
No Answer is Posted For this Question
Be the First to Post Answer
what is Array?
code for reverse alternate words from astring
List a few unconditional control statement 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
What is time complexity c?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
What is return in c programming?
What is the use of a static variable in c?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }
What is c++ used for today?