#include <stdio.h>

int main() {
    char* mart_queue[5];

    int front = 0;
    int rear = 0;

    mart_queue[rear++] = "민수";

    printf("%s\n", mart_queue[front]);
    printf("%d\n",front);
    printf("%d",rear);

    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: