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
What is the difference between void main and main in c?
Why do we use namespace feature?
What is the best way to comment out a section of code that contains comments?
Explain how can I right-justify a string?
What is the best way of making my program efficient?
What is the difference between void main() and void main (void) give example programme?
to find the closest pair
What is an object?
write a program to convert a expression in polish notation (postfix) to inline (normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix
In C language, a variable name cannot contain?
What is sizeof int in c?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above