#include <stdio.h>

char* stack[100];
int top = -1;

void push(char* x){
    stack[++top] = x;
}

char* pop(){
    return stack[top--];
}

int main(){
    push("Google");
    push("Naver");
    push("Brave");

    printf("%s",pop());
}

Embed on website

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