This shows you the differences between two versions of the page.
|
c:conio.h:cputs [2013/02/03 21:04] 127.0.0.1 external edit |
c:conio.h:cputs [2024/02/16 01:05] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== cputs ====== | ====== cputs ====== | ||
| <code c> | <code c> | ||
| + | int cputs(const char *str); | ||
| </code> | </code> | ||
| ==== description of cputs ==== | ==== description of cputs ==== | ||
| - | cputs is in work by code-reference.com \\ | + | Returns a string to the screen.\\ |
| - | if you are faster... don't hasitate and add it | + | \\ |
| + | cputs is the null-terminated string from str in the current text window. The newline character is not here appended to the string.\\ | ||
| + | \\ | ||
| + | Depending _directvideo of the global variable, the string is written either directly or through a BIOS call to screen memory.\\ To contrast to fprintf and printf, not translated cputs line character (\ n) in the combination of characters carriage return / line feed (\ r \ n).\\ | ||
| + | Note: Do not use this function in any case in Win32 GUI applications. | ||
| <code c> | <code c> | ||
| - | no example at the moment | + | #include <conio.h> |
| + | int main(void) | ||
| + | { | ||
| + | |||
| + | clrscr(); | ||
| + | window(10, 10, 80, 25); | ||
| + | cputs("Text in Window\r\n"); | ||
| + | getch(); | ||
| + | return 0; | ||
| + | } | ||
| </code> | </code> | ||
| ===== output of cputs c example ===== | ===== output of cputs c example ===== | ||
| - | no example at the moment | + | Text in Window |