top of page

소스 코드 제출

공개·회원 77명

2025.07.30


#include<stdio.h>

#include<string.h>

char stack[1000000]= {};

int top =0;


void push(int N)

{

stack[top]=N;

top++;

}

void pop()

{

top --;

}

int main()

{

char N[50]="",n;

int x;

scanf("%s",N);

x = strlen(N);


for(int i=x;i<0;i--)

{

push(N[i]);

}


printf("%s",);

}

//

// for(int i=0;i<N;i++)

// {

//

// }

// printf("%s",n);


//strlen사용?????

3회 조회
주소 : 경기도 용인시 광교중앙로 302 블루 스퀘어 602호
연락처 : 031) 216 - 1546 ,     031) 215 - 1546
사업자등록번호 : 465-92-00916
​학원 등록 제 4603호
bottom of page