Computer Science, asked by jayavardhanr4, 10 months ago

detail explanation of printing output

please

#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 lakhanifalak46
0

Answer:

which type of questions is this

???

Similar questions