Skip to content

Instantly share code, notes, and snippets.

View romec512's full-sized avatar
💭
working on my project

romec512

💭
working on my project
  • Kazan
View GitHub Profile
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include <time.h>
struct MyStack {
int data;
MyStack *next;
};