added xor

This commit is contained in:
ada-dmitry
2023-04-17 21:29:57 +03:00
parent b8727b3820
commit ea4d0db0f1
13 changed files with 294 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <string.h>
#include <ctype.h>
typedef struct node {
int x;
struct node* next;
}Plate;
void print_plates(Plate* plates);
Plate* push(Plate* plates, int x);
Plate* remove_plate(Plate* plates);
int pop(Plate** plates);
int len(Plate* plates);
int isnm(char *str);