Skip to content

Instantly share code, notes, and snippets.

View gcs-abdulwahab's full-sized avatar

Abdul Wahab gcs-abdulwahab

  • 08:15 (UTC +05:00)
View GitHub Profile
@gcs-abdulwahab
gcs-abdulwahab / WEb Midterm Syllabus.txt
Last active September 13, 2022 18:48
GCS Web IT-205 Midterm Syllabus
XML
HTML
Head
title , script , link
Body
Protocols , http , ftp , https , smtp , ip , tcp/ip / udp
Client , server , Client Server Architecture
HTML Structure : Root Element , Head , Body
Self Closing Tags Case Sensitive
@gcs-abdulwahab
gcs-abdulwahab / Node.cpp
Created July 26, 2022 06:07
My Description to DSA class for Node Class
// Abdul-Wahab GCS-s22-003
#include <iostream>
using namespace std;
class Node {
private:
int data;
Node* next;
public:
Node(int data , Node* next=NULL){