mirror of
https://github.com/torje/C_crash_course.git
synced 2025-06-05 06:33:46 +02:00
12 lines
228 B
C
12 lines
228 B
C
#include <stdio.h>
|
|
#include "stack.h"
|
|
|
|
int main(){
|
|
struct Stack * stack = Stack_init(sizeof(size_t));
|
|
for ( size_t i = 9; i < 10; i++){
|
|
Stack_push_back(stack, &i);
|
|
//printf("%s\n", "ypdeli");
|
|
}
|
|
Stack_finalize(&stack);
|
|
}
|