Skip to content

Instantly share code, notes, and snippets.

View maruf-sarker's full-sized avatar
🎯
Focusing

Md Maruf Sarker maruf-sarker

🎯
Focusing
View GitHub Profile
@maruf-sarker
maruf-sarker / queue_implementation.c
Created November 13, 2022 05:09
Implement Queue using Arrays
// Written by: Md. Maruf Sarker
// Platform: Arch Linux
// Problem: Implement Queue using Arrays
// Language: c
// Date: 2022-11-13
#include <stdio.h>
#include <stdlib.h>
#define size 5
@maruf-sarker
maruf-sarker / singly_linked_list_implementation.c
Created November 13, 2022 04:57
Linked List and Implementation of Singly Linked List
// Written by: Md. Maruf Sarker
// Platform: Arch Linux
// Problem: Linked List and Implementation of Singly Linked List
// Language: c
// Date: 2022-11-13
#include <stdio.h>
#include <stdlib.h>
struct Node{
@maruf-sarker
maruf-sarker / sgpa-calculator.c
Last active August 2, 2022 18:40
SGPA Calculator Project - Md. Maruf Sarker - Green University Of Bangladesh - Dedicated to Suborno Maksuda - Dhaka International University
// Project Name: SGPA Calculator
// Author: Md. Maruf Sarker
// Date: 3 August, 2022
// Language: C
// Version: 1.0
// Green University of Bangladesh - 221 Batch
// Time Spend: 10:00 pm -12:40 am
#include <stdio.h>