Write a program to print the following series
2 5 11 17 23 31 41 47 59 ...
Answer Posted / dixit
#include<stdio.h>
int main()
{
int i=0,j=0,c=0,ct=-1,n=0;
scanf("%d",&n);
printf("2 ");
for(i=4;i<100;i++)
{ c=1;
for(j=2;j<=i/2;j++)
{
if(i%j==0) c=0;
}
if(c!=0){ ct++;
if(ct%2==0 && n>1 ) {
printf("%d ",i);
n--;
}
}}
return 0;
}
| Is This Answer Correct ? | 8 Yes | 20 No |
Post New Answer View All Answers
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
Tell me what is the purpose of 'register' keyword in c language?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What is the importance of c in your views?
How can I manipulate strings of multibyte characters?
What is bin sh c?
What is I ++ in c programming?
Implement bit Array in C.
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
How can I write a function analogous to scanf?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
How do you define CONSTANT in C?
What are pragmas and what are they good for?
Describe static function with its usage?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures