This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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> |