数模论坛

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

C语言的函数!

  [复制链接]
 楼主| 发表于 2004-5-10 16:50:55 | 显示全部楼层
<>函数名: strupr
功  能: 将串中的小写字母转换为大写字母
用  法: char *strupr(char *str);
程序例: <>#include &lt;stdio.h&gt;
#include &lt;string.h&gt; <>int main(void)
{
   char *string = "abcdefghijklmnopqrstuvwxyz", *ptr; <P>   /* converts string to upper case characters */
   ptr = strupr(string);
   printf("%s\n", ptr);
   return 0;
}
</P>
 楼主| 发表于 2004-5-10 16:51:03 | 显示全部楼层
<>函数名: swab
功  能: 交换字节
用  法: void swab (char *from, char *to, int nbytes);
程序例: <>#include &lt;stdlib.h&gt;
#include &lt;stdio.h&gt;
#include &lt;string.h&gt; <>char source[15] = "rFna koBlrna d";
char target[15]; <P>int main(void)
{
   swab(source, target, strlen(source));
   printf("This is target: %s\n", target);
   return 0;
}
</P>
 楼主| 发表于 2004-5-10 16:51:25 | 显示全部楼层
<>函数名: system
功  能: 发出一个DOS命令
用  法: int system(char *command);
程序例: <>#include &lt;stdlib.h&gt;
#include &lt;stdio.h&gt; <>int main(void)
{
   printf("About to spawn command.com and run a DOS command\n");
   system("dir");
   return 0;
}
</P>
 楼主| 发表于 2004-5-10 16:53:05 | 显示全部楼层
<>函数名: tan
功  能: 正切函数
用  法: double tan(double x);
程序例: <>#include &lt;stdio.h&gt;
#include &lt;math.h&gt; <>int main(void)
{
   double result, x; <P>   x = 0.5;
   result = tan(x);
   printf("The tan of %lf is %lf\n", x, result);
   return 0;
}
  
</P>
 楼主| 发表于 2004-5-10 16:53:15 | 显示全部楼层
<>函数名: tanh
功  能: 双曲正切函数
用  法: double tanh(double x);
程序例: <>#include &lt;stdio.h&gt;
#include &lt;math.h&gt; <>int main(void)
{
   double result, x; <P>   x = 0.5;
   result = tanh(x);
   printf("The hyperbolic tangent of %lf is %lf\n", x, result);
   return 0;
}
  
</P>
 楼主| 发表于 2004-5-10 16:53:25 | 显示全部楼层
<>函数名: tell
功  能: 取文件指针的当前位置
用  法: long tell(int handle);
程序例: <>#include &lt;string.h&gt;
#include &lt;stdio.h&gt;
#include &lt;fcntl.h&gt;
#include &lt;io.h&gt; <>int main(void)
{
   int handle;
   char msg[] = "Hello world"; <P>   if ((handle = open("TEST.$$$", O_CREAT | O_TEXT | O_APPEND)) == -1)
   {
      perror("Error:");
      return 1;
   }
   write(handle, msg, strlen(msg));
   printf("The file pointer is at byte %ld\n", tell(handle));
   close(handle);
   return 0;
}
  
  
  
</P>
 楼主| 发表于 2004-5-10 16:53:34 | 显示全部楼层
<>函数名: textattr
功  能: 设置文本属性
用  法: void textattr(int attribute);
程序例: <>#include &lt;conio.h&gt; <>int main(void)
{
   int i; <P>   clrscr();
   for (i=0; i&lt;9; i++)
   {
       textattr(i + ((i+1) &lt;&lt; 4));
       cprintf("This is a test\r\n");
   } <P>   return 0;
}
</P>
 楼主| 发表于 2004-5-10 16:53:43 | 显示全部楼层
<>函数名: textbackground
功  能: 选择新的文本背景颜色
用  法: void textbackground(int color);
程序例: <>#include &lt;conio.h&gt; <>int main(void)
{
   int i, j; <P>   clrscr();
   for (i=0; i&lt;9; i++)
   {
       for (j=0; j&lt;80; j++)
         cprintf("C");
       cprintf("\r\n");
       textcolor(i+1);
       textbackground(i);
   } <P>   return 0;
}
  
</P>
 楼主| 发表于 2004-5-10 16:53:55 | 显示全部楼层
<>函数名: textcolor
功  能: 在文本模式中选择新的字符颜色
用  法: void textcolor(int color);
程序例:
#include &lt;conio.h&gt; <>int main(void)
{
   int i; <>   for (i=0; i&lt;15; i++)
   {
       textcolor(i);
       cprintf("Foreground Color\r\n");
   } <P>   return 0;
}
  
</P>
 楼主| 发表于 2004-5-10 16:54:05 | 显示全部楼层
<>函数名: textheight
功  能: 返回以像素为单位的字符串高度
用  法: int far textheight(char far *textstring);
程序例: <>#include &lt;graphics.h&gt;
#include &lt;stdlib.h&gt;
#include &lt;stdio.h&gt;
#include &lt;conio.h&gt; <>int main(void)
{
   /* request auto detection */
   int gdriver = DETECT, gmode, errorcode;
   int y = 0;
   int i;
   char msg[80]; <P>   /* initialize graphics and local variables */
   initgraph(&amp;gdriver, &amp;gmode, ""); <P>   /* read result of initialization */
   errorcode = graphresult();
   if (errorcode != grOk)  /* an error occurred */
   {
      printf("Graphics error: %s\n", grapherrormsg(errorcode));
      printf("Press any key to halt:");
      getch();
      exit(1); /* terminate with an error code */
   } <P>   /* draw some text on the screen */
   for (i=1; i&lt;11; i++)
   {
      /* select the text style, direction, and size */
      settextstyle(TRIPLEX_FONT, HORIZ_DIR, i); <P>      /* create a message string */
      sprintf(msg, "Size: %d", i); <P>      /* output the message */
      outtextxy(1, y, msg); <P>      /* advance to the next text line */
      y += textheight(msg);
   } <P>   /* clean up */
   getch();
   closegraph();
   return 0;
}
  
  
  </P>
您需要登录后才可以回帖 登录 | 注-册-帐-号

本版积分规则

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

GMT+8, 2024-11-27 06:17 , Processed in 0.051258 second(s), 12 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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