Skip to content

Instantly share code, notes, and snippets.

@Gabutoo
Gabutoo / Project_Sayago
Created December 8, 2019 07:36
Banking (User Menu) using Linked List with ADD MODIFY DELETE DISPLAY (Admin Menu)
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<malloc.h>
#include<malloc.h>
#include<string.h>
double money = 0.0;
struct bank{
@Gabutoo
Gabutoo / Project_Sayago.c
Last active December 8, 2019 08:37
Banking (User Menu) using Linked List with ADD MODIFY DELETE DISPLAY (Admin Menu)
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<malloc.h>
#include<malloc.h>
#include<string.h>
struct bank{
@Gabutoo
Gabutoo / rev1_sayago.c
Last active December 8, 2019 18:38
Structs
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<malloc.h>
#include<malloc.h>
#include<string.h>
struct node *start = NULL;
struct node *add(struct node*,char name[50],int password, double money);
struct client {
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
//Multi Linked List
struct client {
//structure for users Information
int cardNumber;