Popular posts from this blog
The Best Cloud Torrent website [ seedr.cc ]
By
Abu o techo
I found a #cloud #torrent that's awesome ;) Seedr simplifies the way you get stuff, stream and access it. Download once - Use Everywhere! it's FREE just give it a try! https:// seedr.cc Seedr fully supports FTP on ftp. seedr .cc . The server has gone through extensive testing, and works well with VLC, Kodi and Influse! Feel free
Finding the K th node from the end using Double Linked List
By
Abu o techo
Link for the program in Github is below. #include<stdio.h> #include<stdlib.h> struct node{ int data; struct node *pdr; struct node *ndr; }; struct node *start=NULL,*ptr,*nnode=NULL,*ptr2,*ptr3,ptr4; void main() { int x,n,k; printf("Enter the data and if entering (-ve) integers it stop taking inputs(data) : \n"); scanf("%d",&x); while(x>=0) { nnode=(struct node*)malloc(sizeof(struct node)); if(start==NULL) { nnode->data=x; nnode->pdr=NULL; nnode->ndr=NULL; ...
Comments