> ## Documentation Index
> Fetch the complete documentation index at: https://learn.acadlink.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Print Your Name

> Write a C program that prints your name.

## Problem Statement

Write a C program that prints your name to the console.

## Solution

```c theme={null}
#include <stdio.h>

int main() {
    printf("John Doe\n");
    return 0;
}
```

## Output

```
John Doe
```
