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

Upload new file

parent 22b9b913
No related branches found
No related tags found
No related merge requests found
struct.h 0 → 100644
#ifndef STRUCT_H
#define STRUCT_H
struct Node{
int data;
struct Node* next;
};
struct Node* newFUNC (int data);
struct Node* insert (struct Node* head, int data);
void myPrint(struct Node* head);void replace(struct Node* head, int pos, int elem);
void replace(struct Node* head, int pos, int elem);
#endif /* STRUCT_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment