node

  1. chimera201

    Samsung to Fab AMD "Zen" and "Arctic Islands" on its 14 nm FinFET Node

    Samsung to Fab AMD "Zen" and "Arctic Islands" on its 14 nm FinFET Node | techPowerUp
  2. P

    problem during creation of object file

    hi, I have a problem in understanding the creation of object file just look at the code below. in the code below i have defined struct node in another C file. I have no any declaration of struct node in this code . But when i am compiling this code to generate the object code it is...
  3. Z

    detecting a loop in a linked list

    hey can someone tell me how to find a loop in a linked list....ive searched a lot on google.i found the famous floyed`s algorithm but what i dont understand is that how can this algorithm if the length of the loop is bigger than 4 node...as in what if a have a linked list that goes on like...
  4. veddotcom

    Need Help With This CODE of Data Structure(Binary TREE).

    OUTPUT Of the Above Programm is In-Order Traversal: D B H E A F C G I want to know How the Function BUILDTREE is Working, The Problem is When we Calling the Function buildtree recursively by the expression LINE 1,HOw Compliter would be Able to Read The LINE 2 and LINE 3, After Recursive...
  5. veddotcom

    Problem with Pointer in Structure

    #include <stdio.h> #include <conio.h> #include <alloc.h> /* structure containing a data part and link part */ struct node { int data ; struct node * link ; } ; /* This is The Part of Programm*/ The Problem is when i m running This Program (of Linked List) Runs Properly But...
  6. skghosh44

    Path of Printer

    I am writing a programme in Visual Foxpro, where I have to select network(LAN) printer for printing in the programme. The command is as under \\network name \printer name = desitnation Now how I have to find out these all and create the command to work in Visual Foxpro. By default the output...
  7. cool_callis

    deletion of node in threaded binary tree

    can any tell me the algorithm/code or simply explain the procedure to delete a node from right in threaded binary tree?????????
  8. iNFiNiTE

    Another C/C++ Problem

    Hi Guys, Here is one problem which one of my friends sent it to me. Maybe some of u can work it out.. Given a text file where each line is one of the following formats: node x y neighbour x y There will be one node line and n neighbour lines (where n is an arbitrary number). Your job...
  9. arunks

    Hey i m getting only one error...Plz help to rectify that

    I m writing a program for various operations on linked list in C... Program is given below.. and i m getting one error and two warnings.. Plz see by executing it and help me to remove it and run the program successfully... #include<stdio.h> #include<conio.h> struct node { int info; struct node...
  10. eagle_y2j

    Help me over C project !

    Can any of you check my BCA xcam project to find any bug ? I just completed this stuff using help from internet (answers) not sure are they correct or not ! Help will really be appreciated :-) Question 1: Write a C program to create a calculator. The program will accept an arithmetic...
  11. J

    multimedia tricks

    hi, have a network system and i have a node of network i want to change a songs in winamp which playing a another node calling node2 my node is node 4 how can i do this
  12. J

    cyber cafe problem

    hi i have a cyber cafe of 10 pc using windows 2000 as operating system. i want solution about share i want access all node from i pc but another node could'n access any node tell me this problem solution. i have given all node administrator rights in guest mode the sharing tab is missing...
  13. M

    LInk List Problem , Immediate soln needed

    Hi guys , plz see this code for me The problem lies in the Inserting of node portion. #include<iostream.h> #include<conio.h> #include<stdlib.h> #include<stdio.h> struct linklist { int data; linklist *next; }; typedef struct linklist node; void create(node...
  14. iinfi

    append (NODE **q, int num) .... HELP

    in data structures using C ... while adding a node @ the end of a link list e.g append (NODE **q, int num) what does **q stand for ??? *q is the "address pointer" of the parameter passed .... but what is **q
  15. P

    This should be an easy one...

    hey i have this small problem : I am in college and seems like the admins here have capped individual download rates. We use a proxy server [connected by a 100mbps LAN]. Is there any way i can brigde a connection [over LAN] with another node computer and use the cumulative bandwidth of both...
Top Bottom