I am trying to understand queue in c language. I have gone through page Programming Concepts: Queues - Wikibooks, open books for an open world

Code:
#include<stdio.h>

#include<stdlib.h> 
    
struct Queue  
{ 
  int data;              
  struct Queue *Next;  
}; 




int main() 
{ 
  struct Node* Front = NULL; 
  
  return 0; 
}
I am planning two write two functions, enqueue to insert data into queue and dequeue to delete. I don't understand how to implement.

I would apricate for any help