Skip to content
Snippets Groups Projects
Commit 696c9467 authored by Sandro Müller's avatar Sandro Müller
Browse files

Upload new file

parent 9e8cf7dd
No related branches found
No related tags found
No related merge requests found
linked.c 0 → 100644
#include <stdlib.h>
#include <stdio.h>
#include "struct.h"
int main(){
struct Node* head=NULL;
head = insert(head,5);
head = insert(head,4);
head = insert(head,3);
head = insert(head,9);
printf("\nHier wird die Eingabe geprintet:\n");
myPrint(head);
printf("\n");
printf("\nHier wird das Element ersetzt:\n");
replace (head,0,50);
replace (head,1,40);
replace (head,2,30);
replace (head,3,90);
myPrint(head);
//replace (int pos,int elem);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment