C Uygulaması
#include "<"ncurses.h">"
int main()
{
initscr();
getch();
endwin();
printf("bitti\n");
}
# gcc ilk.c -o ilk
/tmp/cchah5Wx.o: In function `main':
/tmp/cchah5Wx.o(.text+0x7): undefined reference to `initscr'
/tmp/cchah5Wx.o(.text+0x10): undefined reference to `stdscr'
/tmp/cchah5Wx.o(.text+0x15): undefined reference to `wgetch'
/tmp/cchah5Wx.o(.text+0x1d): undefined reference to `endwin'
collect2: ld returned 1 exit status
# gcc ilk.c -o ilk -I/usr/include -L/usr/lib -lncurses