Posts

Showing posts from June, 2020

Gredient_Flip_Profile_Card

Image
CSZONE  Gredient_Flip_Profile_Card index.html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>MissionEd | Team</title> <link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"><link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> </head> <body> <center> <div class="container-fluid"> <br><br><br> <h1 style="color: white;">Profile Flip Card</h1> <!------------------------Row---------------------------------------> <ul class="team"> <li> <!-------------Flip Card----------------->

Linked List | Data Structure With C

Image
CSZONE Linked List | Data Structure With C #include <stdio.h> #include <stdlib.h> // A Single Linked List Node struct Node{ int data; struct Node* next; }; void Display_Linked_List(struct Node* list){ while(list!=NULL){ printf("%d->",list->data ); list = list->next; } // For Avoiding last -> while printing in last printf("\b\b"); } int main(){ //Creating Nodes struct Node* head = NULL; struct Node* second = NULL; struct Node* third = NULL; //Allocate three Nodes head = (struct Node*)malloc(sizeof(struct Node)); second = (struct Node*)malloc(sizeof(struct Node)); third = (struct Node*)malloc(sizeof(struct Node)); //Assigning The Values head->data = 1; head->next = second; second->data = 2; second->next = third; third->data = 3; third->next = NULL; Display_Linked_List(head); return 0; }