当前位置: 首页 > 图文教程 > 开发语言 > C/C++ > C/C++:小编谈C语言函数那些事(14)

C/C++
2009年编程开发语言的使用率
C++对象模型笔记:dynamic binding
cstl -- c语言编写通用数据结构和常用算法库(模仿SGI STL)
子串匹配:不回溯算法
C++ Builder 访问 USB 口的方法
C++中二维数组的动态分配
数组和指针在编译的时候的区别
如何利用doxygen生成pdf文档
有关C++析构函数的异常(Exceptions in Destructors)
C++模板学习之函数对象之谓词
5月编程语言排行榜:D语言风采不再
一个C++类实现文件全盘搜索
C语言编程宝典之一 读书笔记
C语言嵌入式系统编程修炼(内存操作)
C++内存管理
带头结点的双循环链表
有关VA_LIST的用法
C++标准库简介(转)
一个栈类的实现(链栈)
C 引用与指针的比较

C/C++:小编谈C语言函数那些事(14)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-17   浏览: 59 ::
收藏到网摘: n/a

C程序是由一组或是变量或是函数的外部对象组成的。 函数是一个自我包含的完成一定相关功能的执行代码段。下面小编和大家分享下C语言中的函数。

 

1.       normvideo函数

 

malloc函数的功能是选择正常亮度字符,其用法为:void normvideo(void);程序实例如下:

#include <conio.h>

int main(void)

{

   normvideo();

   cprintf("NORMAL Intensity Text\r\n");

   return 0;

}

 

2.      open函数

 

open函数的功能是打开一个文件用于读或写,其用法为:int open(char *pathname, int access[, int permiss]);  程序实例代码如下:

#include <string.h>

#include <stdio.h>

#include <fcntl.h>

#include <io.h>

int main(void)

{

   int handle;

   char msg[] = "Hello world";

   if ((handle = open("TEST.$$$", O_CREAT | O_TEXT)) == -1)

   {

      perror("Error:");

      return 1;

   }

   write(handle, msg, strlen(msg));

   close(handle);

   return 0;

}

3.     outtextxy函数

 

outtextxy函数的功能是在指定位置显示一字符串, 其用法为:void far outtextxy(int x, int y, char *textstring);程序实例代码如下:

#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
int main(void)
{

   int gdriver = DETECT, gmode, errorcode;
   int midx, midy;
    initgraph( &gdriver, &gmode, "");
    errorcode = graphresult();
   if (errorcode != grOk)  /* an error occurred */
   {
      printf("Graphics error: %s\n", grapherrormsg(errorcode));
      printf("Press any key to halt:");
      getch();
      exit(1);   }
     midx = getmaxx() / 2;
    midy = getmaxy() / 2;

   outtextxy(midx, midy, "This is a test.");
    getch();
    closegraph();
    return 0;
}

4.       outport函数

 

outport函数的功能是输出整数到硬件端口中,其用法为:void outport(int port, int value);程序实例代码如下:

#include <stdio.h>

#include <dos.h>

int main(void)

{

   int value = 64;

   int port = 0;

   outportb(port, value);

   printf("Value %d sent to port number %d\n", value, port);

   return 0;

}