If you want to add or remove users from the sudo group on Ubuntu, you can follow the below examples,
Add user to Sudo Group

% sudo adduser c2c sudo
Adding user `c2c' to group `sudo' ...
Adding user c2c to group sudo
Done.
If the user already exists in the sudo group make use of sudo adduser command,
% sudo adduser c2c sudo
The user `c2c' is already a member of `sudo'.
Remove user to Sudo Group
In order to remove a user from sudo group you can make use of sudo deluser command,

% sudo deluser c2c sudo
Removing user `c2c' from group `sudo' ...
Done.
Again, if you try to remove a user that does not exist in sudo group you will get below error,
bash|/usr/sbin/deluser: The user `c2c' is not a member of group `sudo'.
- Install Oh My Zsh on Ubuntu Docker complete steps
- Installing Home-brew on Ubuntu
- Install Golang (Go) on Ubuntu
- Install specific JRE on Ubuntu using apt
- How to stop/start/restart apache server using command [Ubuntu]
- How to install zsh shell on Ubuntu
- Quick steps to install Nginx on Ubuntu Linux
- How to know current Ubuntu Linux version via terminal command
- Add new user in Ubuntu Linux using Terminal Command
- Fix Ubuntu /bin/sh: 1: zsh: not found error
- How to install Python on Ubuntu
- [Fix] Ubuntu E: Unable to locate package sudo error
- How to stop MongoDB Server running on Ubuntu
- Install postgres Client using apt-get command
- How to kill service running on a port on Ubuntu Linux
- [fix] openssl No such file or directory error C++
- Fix - sudo: systemctl: command not found
- Access Windows share folder in Ubuntu Device in Network
- Add or remove users from sudo group - Ubuntu
- Quickly install Apache Server on Ubuntu Linux
- Fix: Ubuntu (Linux) - bash: sudo: command not found error
- How to Organize Mac Desktop Files - MacOS
- [Solution] Android Studio does not displays Toolbar in Layout Design - Android-Studio
- Get the Complete Sha256 Container ID for Docker Run Command - Docker
- Github: fatal: Authentication failed Support for password was removed on August 13, 2021 - Git
- Best way to calculate elapsed time in Java using Java 8 Duration & Instant Class with Nanoseconds precision - Java
- Java Split String by Spaces - Java
- SharePoint error - Your organization doesn't allow sharing with users from this domain. Please contact your IT department for help. (OSE403) - SharePoint
- How to save IntelliJ IDE Console logs to external log file - Android-Studio