-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
54 lines (47 loc) · 980 Bytes
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* Program dodaje elementy do listy i wyswietla jej zawartosc */
#include <stdio.h>
#include <stdlib.h>
struct element
{
int wartosc;
struct element* nastepny;
};
struct element* glowny;
dodaj(int x)
{
struct element* temp = (struct element*)malloc(sizeof(struct element));
temp->wartosc = x;
temp->nastepny=glowny;
glowny = temp;
}
void wypisz()
{
struct element* temp = glowny;
printf("lista: ");
while (temp!=NULL)
{
printf(" %d | ", temp->wartosc);
temp=temp->nastepny;
}
printf("\n");
}
int main()
{
glowny = NULL;
int ile, x, wybor;
do
{
printf("-------> 1 dodaj liczbe | 2 zakoncz <-----------\n");
scanf("%d", &wybor);
switch (wybor)
{
case 1:
printf("Podaj liczbe \n");
scanf("%d", &x);
dodaj(x);
wypisz();
break;
}
}while(wybor != 2);
return 0;
}