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

Post New Answer

More C Interview Questions

What is variable and explain rules to declare variable in c?

0 Answers  


What is the use of c language in real life?

0 Answers  


Can main () be called recursively?

0 Answers  


What is the use of linkage in c language?

0 Answers  


What is openmp in c?

0 Answers  


What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }

5 Answers   ADITI, Wipro,


What are variables and it what way is it different from constants?

0 Answers  


How to add two numbers with using function?

4 Answers  


Program to write some contents into a file using file operations with proper error messages.

2 Answers  


Write a program to check prime number in c programming?

0 Answers  


Is there sort function in c?

0 Answers  


struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?

1 Answers   Wipro,


Categories