Computer Science, asked by jayavardhanr4, 11 months ago

I need detail explanation of desired output and how values are printed.
Please help me


#include <stdio.h>
int main()
{
int n, i = 3, count, c;

printf("Enter the number of prime numbers to print\n");
scanf("%d", &n);

if (n >= 1) {
printf("First %d prime numbers are:\n",n);
printf("2\n");
}

for (count = 2; count <= n;)
{
for (c = 2; c <= i - 1; c++)
{
if (i%c == 0)
break;
}
if (c == i)
{
printf("%d\n", i);
count++;
}
i++;
}

return 0;
}​

Answers

Answered by Mansikundu
2

Answer:

sorry i habe no knowledge about it

Similar questions