#include<stdio.h>
void findfact(int num)
{
int i;
for(i=1;i<num;i++)
{
if(num%i==0)
printf("Factor for %d is %d\n",num,i);
}
}
main()
{
int a;
printf("\nEnter a number:");
scanf("%d",&a);
findfact(a);
}
Yes, do write, or if you're too lazy to your homework, use google.
8086 assembly language program to check wether given number is perfect or not
program to extract a given word from a file
write a program in C to check whether a given number is apalindrome or not
If the given number has two factors, one of them is 1.
It is your face
Write a C program called MonthDays to find the number of days in a given month Test your code with different input values to demonstrate that your function is robust?
One way to do this is to convert the number to a String, then use the corresponding String method to find out the length of the String.
write a shell program for finding out gcd of three given numbers? write a shell program for finding out gcd of three given numbers? write a shell program for finding out gcd of three given numbers? check bellow link http://bashscript.blogspot.com/2009/08/gcd-of-more-than-two-numbers.html
There are two ways in which the factors can be given. You are given all the prime factors (and their multiplicity). In that case simply multiply them all together. Or You are given each factor. In this case, the biggest of these is the number.
Yes.
write the javascript code to display the reverse no. of given no. (e.g. 247 reverse of 742)