mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
Fix spelling mistake
This commit is contained in:
parent
553b835163
commit
15c2ced3ba
@ -35,7 +35,7 @@ void insert()//function to insert at first location
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
///////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////
|
||||||
void deleteion()//function to delete from first position
|
void deletion()//function to delete from first position
|
||||||
{
|
{
|
||||||
struct node *t;
|
struct node *t;
|
||||||
if(start==NULL)
|
if(start==NULL)
|
||||||
@ -85,7 +85,7 @@ int main()
|
|||||||
insert();
|
insert();
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
deleteion();
|
deletion();
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
viewlist();
|
viewlist();
|
||||||
|
Loading…
Reference in New Issue
Block a user