Skip to content

Instantly share code, notes, and snippets.

@Usman032
Usman032 / linkedlist_s_stu.cpp
Created May 15, 2021 23:25 — forked from m-primo/linkedlist_s_stu.cpp
Simple Single Linked List with Student Class Implementation in C++
#include <iostream>
#include <string>
using namespace std;
#define null 0
class Student {
public:
string name;
int age;
float gpa;
C++ code snippets