# Basic Input/Output Channels

In C programming, file descriptors are **integer** values that represent open files or input/output streams. They are used to interact with files, devices, and other input/output mechanisms. The three standard file descriptors commonly used in C are:

1. **stdin (Standard Input):** File descriptor 0. It is associated with the keyboard by default, and it is used for reading input from the user.
    
2. **stdout (Standard Output):** File descriptor 1. It is associated with the console or terminal by default, and it is used for displaying output to the user.
    
3. **stderr (Standard Error):** File descriptor 2. Like stdout, stderr is associated with the console or terminal by default. However, it is typically used for error messages and diagnostics to separate them from regular program output.
    

### Output to stdout (Standard Output):

To output information to the console using `stdout`, you can use the `printf` function:

```c
#include <stdio.h>

int main() {
    printf("Hello, stdout!\n");
    fprintf(stdout, "Hello, stdout!\n"); // Same effect
    return 0;
}
```

In this example, the `printf` function is used to print the string "Hello, stdout!" to the console. The `\n` at the end represents a newline character, causing the cursor to move to the next line.

### Output to stderr (Standard Error):

To output error messages to `stderr`, you can also use the `fprintf` function:

```c
#include <stdio.h>

int main() {
    fprintf(stderr, "This is an error message.\n");
    return 0;
}
```

In this example, the `fprintf` function is used to print an error message to `stderr`.

### Input from stdin (Standard Input):

To read input from the user via `stdin`, you can use the `scanf` function or other input functions:

```c
#include <stdio.h>

int main() {
    int num;
    printf("Enter a number: ");
    scanf("%d", &num); // can also use fscanf(stdin, "%d", &num);
    printf("You entered: %d\n", num);
    return 0;
}
```

In this example, the program prompts the user to enter a number, reads the input from the keyboard using `scanf`, and then prints the entered number back to the console.
