Move the cursor to coordinates (y,x) and delete the character on the specified window. The mvdelch function acts on the stdscr window.
#include <curses.h>
int mvdelch (int y, int x);
int mvwdelch (WINDOW *win, int y, int
x);
| OK | Indicates success. |
| ERR | Indicates that deleting the character would cause the screen to scroll illegally. For more information, see the scrollok function in this section. |