Write an algorithm for a program that receives an integer as
input and outputs
the product of of its digits. E.g. 1234 = 24, 705 = 0
Answer Posted / pavithra
jus use an array to store d i/p
nd multiply the array elements
Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What does != Mean in c?
What is the function of multilevel pointer in c?
What is volatile variable how do you declare it?
How to get string length of given string in c?
What is a list in c?
What are the advantages of c language?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is %s and %d in c?
What are the advantages of using Unions?
Is it possible to have a function as a parameter in another function?
Can an array be an Ivalue?
What does calloc stand for?
Which is an example of a structural homology?
How do I determine whether a character is numeric, alphabetic, and so on?
What is the difference between constant pointer and constant variable?