what is answer for perfect number????????????????
Answer / david uwihoreye
Perfect number is a positive number which sum of all
positive divisors excluding that number is equal to that
number. For example 6 is perfect number since divisor of 6
are 1, 2 and 3. Sum of its divisor is
1 + 2+ 3 =6
Note: 6 is the smallest perfect number.
Next perfect number is 28 since 1+ 2 + 4 + 7 + 14 = 28
Some more perfect numbers: 496, 8128
| Is This Answer Correct ? | 5 Yes | 0 No |
what is the difference between NULL & NUL keywords in C?
what is a pointer
4 Answers Bank Of America, TCS,
wat s the meaning of (int *)p +4;
how can i get this by using for loop? * ** * **** * ******
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
Program to find larger of the two numbers without using if-else,while,for,switch
Why is not a pointer null after calling free?
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
Write a C program to perform some of the operation which can be performed using Single linked list
What are the types of data structures in c?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
Can you assign a different address to an array tag?