GNU C Programming Notes: Difference between revisions
Jump to navigation
Jump to search
New page: Text Notes Document for Gnu C Programming == getchar() and loop control == C program that needs to attend the user input without blocking a loop depends on which environment you're codi... |
No edit summary |
||
Line 7: | Line 7: | ||
the ncurses function halfdelay() | the ncurses function halfdelay() | ||
== References == | |||
*Introduction to ANSI C (on linux) | |||
:http://www.linuxuniversity.org/dev_track/c_class/ | |||
[[Category:Computer_Technology]] | [[Category:Computer_Technology]] | ||
[[Category:Programming]] | [[Category:Programming]] | ||
[[Category:C]] | [[Category:C]] |
Revision as of 17:30, 20 June 2007
Text Notes Document for Gnu C Programming
getchar() and loop control
C program that needs to attend the user input without blocking a loop depends on which environment you're coding: raw-C for the glass-tty, curses/termcap, X, KDE, Gnome, etc.
the ncurses function halfdelay()
References
- Introduction to ANSI C (on linux)