数模论坛

 找回密码
 注-册-帐-号
搜索
热搜: 活动 交友 discuz

C语言的函数!

  [复制链接]
 楼主| 发表于 2004-5-10 17:00:21 | 显示全部楼层
  
  
  <>函数名: wherex
功  能: 返回窗口内水平光标位置
用  法: int wherex(void);
程序例: <>#include &lt;conio.h&gt; <>int main(void)
{
   clrscr();
   gotoxy(10,10);
   cprintf("Current location is X: %d  Y: %d\r\n", wherex(), wherey());
   getch(); <P>   return 0;
}
  
  
  </P>
 楼主| 发表于 2004-5-10 17:00:41 | 显示全部楼层
<>函数名: wherey
功  能: 返回窗口内垂直光标位置
用  法: int wherey(void);
程序例: <>#include &lt;conio.h&gt; <>int main(void)
{
   clrscr();
   gotoxy(10,10);
   cprintf("Current location is X: %d  Y: %d\r\n", wherex(), wherey());
   getch(); <P>   return 0;
}
  
  
  </P>
 楼主| 发表于 2004-5-10 17:01:01 | 显示全部楼层
<>函数名: window
功  能: 定义活动文本模式窗口
用  法: void window(int left, int top, int right, int bottom);
程序例: <>#include &lt;conio.h&gt; <>int main(void)
{ <P>   window(10,10,40,11);
   textcolor(BLACK);
   textbackground(WHITE);
   cprintf("This is a test\r\n"); <P>   return 0;
}
  
  
  </P>
 楼主| 发表于 2004-5-10 17:01:17 | 显示全部楼层
<>函数名: write
功  能: 写到一文件中
用  法: int write(int handel, void *buf, int nbyte);
程序例: <>#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;
#include &lt;fcntl.h&gt;
#include &lt;sys\stat.h&gt;
#include &lt;io.h&gt;
#include &lt;string.h&gt; <>int main(void)
{
   int handle;
   char string[40];
   int length, res; <P>   /*
    Create a file named "TEST.$$$" in the current directory and write
    a string to it.  If "TEST.$$$" already exists, it will be overwritten.
   */ <P>   if ((handle = open("TEST.$$$", O_WRONLY | O_CREAT | O_TRUNC,
                         S_IREAD | S_IWRITE)) == -1)
   {
      printf("Error opening file.\n");
      exit(1);
   } <P>   strcpy(string, "Hello, world!\n");
   length = strlen(string); <P>   if ((res = write(handle, string, length)) != length)
   {
      printf("Error writing to the file.\n");
      exit(1);
   }
   printf("Wrote %d bytes to the file.\n", res); <P>   close(handle);
   return 0;
}
  <P>
 </P>
发表于 2004-5-18 21:47:31 | 显示全部楼层
a
发表于 2004-5-18 23:37:42 | 显示全部楼层
谢谢了!
发表于 2004-5-25 17:36:31 | 显示全部楼层
<>让我看看吧。。。。</P>
发表于 2004-5-26 18:27:36 | 显示全部楼层
gfghjhkjhlkjrtyiuuooiuuuuuuuuuuuuu
发表于 2004-5-26 18:29:12 | 显示全部楼层
画稿呀
发表于 2004-5-26 18:30:05 | 显示全部楼层
很好呀个各个各个
您需要登录后才可以回帖 登录 | 注-册-帐-号

本版积分规则

小黑屋|手机版|Archiver|数学建模网 ( 湘ICP备11011602号 )

GMT+8, 2024-11-27 04:28 , Processed in 0.059412 second(s), 13 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表