⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 040.htm

📁 一个好的讲DSP中C语言编程的电子书
💻 HTM
字号:
<HTML><HEAD><meta http-equiv="Content-Type" content="text/html; charset=GB2312"><TITLE>王大刚-->C语言编程宝典-->W</TITLE>
<META NAME="keywords" CONTENT="王大刚 C语言编程宝典 W">
<META NAME="description" CONTENT="王大刚 - C语言编程宝典 - W">

<style>
<!--
#page {position:absolute; z-index:0; left:0px; top:0px}
.tt3 {font: 9pt/12pt "宋体"}
.tt2 {font: 12pt/15pt "宋体"}
a {text-decoration:none}
a:hover {color: blue;text-decoration:underline}
-->
</style>
</HEAD>
<body text="#000000" aLink=#9900ff link=#006699 vLink=#006699 bgcolor="#FFFFFF" leftmargin="3" topmargin="3" marginheight="3" marginwidth="3">
<TABLE WIDTH="100%" CELLPADDING=10 CELLSPACING=0 BORDER=0>
<TR>
<TD CLASS="tt3" VALIGN="top" width="8%"  bgcolor="#e0e0e0"><strong><A HREF="041.htm">后一页</A><BR>
<A HREF="039.htm">前一页</A><BR>

<A HREF="index.html">回目录</A><BR>
<A HREF="../../../../index.htm">回首页</A><BR>
</strong>
</TD>
<TD class="tt2" bgcolor="#F5F8F8" width="84%"><center><B><FONT style="FONT-SIZE: 16.5pt" COLOR="#FF6666" FACE="楷体_GB2312">W</FONT></B></center>
<hr color="#EE9B73" size="1" width="94%">
<P>函数名: wherex
<BR>功&nbsp; 能: 返回窗口内水平光标位置
<BR>用&nbsp; 法: int wherex(void);
<BR>程序例:
<BR>
<P>#include &lt;conio.h>
<BR>
<P>int main(void)
<BR>{
<BR>&nbsp;&nbsp; clrscr();
<BR>&nbsp;&nbsp; gotoxy(10,10);
<BR>&nbsp;&nbsp; cprintf("Current location is X: %d&nbsp; Y: %d\r\n", wherex(),
wherey());
<BR>&nbsp;&nbsp; getch();
<BR>
<P>&nbsp;&nbsp; return 0;
<BR>}
<BR>&nbsp;
<BR>&nbsp;
<BR>&nbsp;
<BR>
<P>函数名: wherey
<BR>功&nbsp; 能: 返回窗口内垂直光标位置
<BR>用&nbsp; 法: int wherey(void);
<BR>程序例:
<BR>
<P>#include &lt;conio.h>
<BR>
<P>int main(void)
<BR>{
<BR>&nbsp;&nbsp; clrscr();
<BR>&nbsp;&nbsp; gotoxy(10,10);
<BR>&nbsp;&nbsp; cprintf("Current location is X: %d&nbsp; Y: %d\r\n", wherex(),
wherey());
<BR>&nbsp;&nbsp; getch();
<BR>
<P>&nbsp;&nbsp; return 0;
<BR>}
<BR>&nbsp;
<BR>&nbsp;
<BR>&nbsp;
<BR>
<P>函数名: window
<BR>功&nbsp; 能: 定义活动文本模式窗口
<BR>用&nbsp; 法: void window(int left, int top, int right, int bottom);
<BR>程序例:
<BR>
<P>#include &lt;conio.h>
<BR>
<P>int main(void)
<BR>{
<BR>
<P>&nbsp;&nbsp; window(10,10,40,11);
<BR>&nbsp;&nbsp; textcolor(BLACK);
<BR>&nbsp;&nbsp; textbackground(WHITE);
<BR>&nbsp;&nbsp; cprintf("This is a test\r\n");
<BR>
<P>&nbsp;&nbsp; return 0;
<BR>}
<BR>&nbsp;
<BR>&nbsp;
<BR>&nbsp;
<BR>
<P>函数名: write
<BR>功&nbsp; 能: 写到一文件中
<BR>用&nbsp; 法: int write(int handel, void *buf, int nbyte);
<BR>程序例:
<BR>
<P>#include &lt;stdio.h>
<BR>#include &lt;stdlib.h>
<BR>#include &lt;fcntl.h>
<BR>#include &lt;sys\stat.h>
<BR>#include &lt;io.h>
<BR>#include &lt;string.h>
<BR>
<P>int main(void)
<BR>{
<BR>&nbsp;&nbsp; int handle;
<BR>&nbsp;&nbsp; char string[40];
<BR>&nbsp;&nbsp; int length, res;
<BR>
<P>&nbsp;&nbsp; /*
<BR>&nbsp;&nbsp;&nbsp; Create a file named "TEST.$$$" in the current directory
and write
<BR>&nbsp;&nbsp;&nbsp; a string to it.&nbsp; If "TEST.$$$" already exists,
it will be overwritten.
<BR>&nbsp;&nbsp; */
<BR>
<P>&nbsp;&nbsp; if ((handle = open("TEST.$$$", O_WRONLY | O_CREAT | O_TRUNC,
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
S_IREAD | S_IWRITE)) == -1)
<BR>&nbsp;&nbsp; {
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf("Error opening file.\n");
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; exit(1);
<BR>&nbsp;&nbsp; }
<BR>
<P>&nbsp;&nbsp; strcpy(string, "Hello, world!\n");
<BR>&nbsp;&nbsp; length = strlen(string);
<BR>
<P>&nbsp;&nbsp; if ((res = write(handle, string, length)) != length)
<BR>&nbsp;&nbsp; {
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf("Error writing to the file.\n");
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; exit(1);
<BR>&nbsp;&nbsp; }
<BR>&nbsp;&nbsp; printf("Wrote %d bytes to the file.\n", res);
<BR>
<P>&nbsp;&nbsp; close(handle);
<BR>&nbsp;&nbsp; return 0;
<BR>}
<BR>&nbsp;
<BR>
<hr color="#EE9B73" size="1" width="94%">

</TD>
<TD CLASS="tt3" VALIGN="bottom" width="8%"  bgcolor="#e0e0e0"><strong><A HREF="041.htm">后一页</A><BR>
<A HREF="039.htm">前一页</A><BR>

<A HREF="index.html">回目录</A><BR>
<A HREF="../../../../index.htm">回首页</A><BR>
</strong>
</TD>
</TR>
</table>
</BODY></HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -