> For the complete documentation index, see [llms.txt](https://krjaeh0.gitbook.io/j-log/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://krjaeh0.gitbook.io/j-log/programming/languages/c-and-c++/c-fundamentals/loop.md).

# loop

{% code title="loops.c" %}

```c
//loops.c
#include <stdio.h>

void ForLoops(void)
{
    int array[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
    int factorial = 1;
    int i;

    /* calculate the factorial using a for loop  here*/
    for (i = 0; i < 10; i++)
    {
        factorial *= array[i];
    }

    printf("10! is %d.\n", factorial);
}

void WhileLoops(void)
{
    /*인쇄를 앞둔 현재 개수가 5개 미만이면 인쇄하지 마십시오.
    인쇄하려는 현재 번호가 10보다 크면 인쇄하지 말고 루프를 중지하십시오.*/
    int array[] = {1, 7, 4, 5, 9, 3, 5, 11, 6, 3, 4};
    int i = 0;

    while (i < 10)
    {
       /* your code goes here */
        if (array[i] < 5)
        {
            i++;
            continue;
        }
        else if (array[i] > 10)
        {
            break;
        }
        printf("%d\n", array[i]);
        i++;
    }
}

int main(void)
{
    // ForLoops();
    WhileLoops();
    return 0;
}
```

{% endcode %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://krjaeh0.gitbook.io/j-log/programming/languages/c-and-c++/c-fundamentals/loop.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
