1)
write a program to generate 1st n fibonacci prime numbers
using Nested if
2)
write a program to generate twin prime numbers from m to n
using nested if
3)
write a program to check whether a given integer is a strong
number or not using nested if
4)
Write a program to generate prime factors of a given integer
using nested if
5)write a program to generate prime numbers from m to n
using nested if
6)write a program to generate perfect numbers from m to n
using nested if
7)write a program to generate the pallindromes from m to n
using neste if
8)write a program to generate armstrong numbers from m to n
using nested if
9)write a program to generate strong numbers from m to n
using nested if
No Answer is Posted For this Question
Be the First to Post Answer
create a C program that displays one z,two y's,three x's until twenty six A's. plzz answer i need it tomorrow.
main() {int a=200*200/100; printf("%d",a); }
How can you determine the maximum value that a numeric variable can hold?
Why does this code crash?
Tell me what is null pointer in c?
void main() { int a=1; while(a++<=1) while(a++<=2); }
without a terminator how can we print a message in a printf () function.
What is the difference between malloc() and realloc()?
diff .between strcture and union
What is difference between array and pointer in c?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is the right type to use for boolean values in c? Is there a standard type?