当前位置:早雪网网络学院编程文档C/C++ → C语言库函数(S类字母) - 1

C语言库函数(S类字母) - 1

减小字体 增大字体 作者:不详  来源:supcode.com收集整理  发布时间:2005-7-22 19:38:53
itgraph(&gdriver, &gmode, ""); 

   /* 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 */ 
   } 

   maxcolor = getmaxcolor(); 
   ht = 2 * textheight("W"); 

   /* grab a copy of the palette */ 
   getpalette(&pal); 

   /* display the default palette colors */ 
   for (color=1; color<=maxcolor; color++) 
   { 
      setcolor(color); 
      sprintf(msg, "Color: %d", color); 
      outtextxy(1, y, msg); 
      y += ht; 
   } 

   /* wait for a key */ 
   getch(); 

   /* black out the colors one by one */ 
   for (color=1; color<=maxcolor; color++) 
   { 
      setpalette(color, BLACK); 
      getch(); 
   } 

   /* restore the palette colors */ 
   setallpalette(&pal); 

   /* clean up */ 
   getch(); 
   closegraph(); 
   return 0; 

  
  

函数名: setaspectratio 
功  能: 设置图形纵横比 
用  法: void far setaspectratio(int xasp, int yasp); 
程序例: 

#include <graphics.h> 
#include <stdlib.h> 
#include <stdio.h> 
#include <conio.h> 

int main(void) 

   /* request auto detection */ 
   int gdriver = DETECT, gmode, errorcode; 
   int xasp, yasp, midx, midy; 

   /* initialize graphics and local variables */ 
   initgraph(&gdriver, &gmode, ""); 

   /* 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 */ 
   } 

   midx = getmaxx() / 2; 
   midy = getmaxy() / 2; 
   setcolor(getmaxcolor()); 

   /* get current aspect ratio settings */ 
   getaspectratio(&xasp, &yasp); 

   /* draw normal circle */ 
   circle(midx, midy, 100); 
   getch(); 

   /* claer the screen */ 
   cleardevice(); 

   /* adjust the aspect for a wide circle */ 
   setaspectratio(xasp/2, yasp); 
   circle(midx, midy, 100); 
   getch(); 

   /* adjust the aspect for a narrow circle */ 
   cleardevice(); 
   setaspectratio(xasp, yasp/2); 
   circle(midx, midy, 100); 

   /* clean up */ 
   getch(); 
   closegraph(); 
   return 0; 

  
  

函数名: setbkcolor 
功  能: 用调色板设置当前背景颜色 
用  法: void far setbkcolor(int color); 
程序例: 

#include <graphics.h> 
#include <stdlib.h> 
#include <stdio.h> 
#include <conio.h> 

int main(void) 

   /* select a driver and mode that supports */ 
   /* multiple background colors.            */ 
   int gdriver = EGA, gmode = EGAHI, errorcode; 
   int bkcol, maxcolor, x, y; 
   char msg[80]; 

   /* initialize graphics and local variables */ 
   initgraph(&gdriver, &gmode, ""); 

   /* 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 */ 
   } 

   /* maximum color index supported */ 
   maxcolor = getmaxcolor(); 

   /* for centering text messages */ 
   settextjustify(CENTER_TEXT, CENTER_TEXT); 
   x = getmaxx() / 2; 
   y = getmaxy() / 2; 

   /* loop through the available colors */ 
   for (bkcol=0; bkcol<=maxcolor; bkcol++) 
   { 
      /* clear the screen */ 
      cleardevice(); 

      /* select a new background color */ 
      setbkcolor(bkcol); 

      /* output a messsage */ 
      if (bkcol == WHITE) 
  setcolor(EGA_BLUE); 
      sprintf(msg, "Background color: %d", bkcol); 
      outtextxy(x, y, msg); 
      getch(); 
   } 

   /* clean up */ 
   closegraph(); 
   return 0; 

  
  

函数名: setblock 
功  能: 修改先前已分配的DOS存储段大小 
用  法: int setblock(int seg, int newsize); 
程序例: 

#include <dos.h> 
#include <alloc.h> 
#include <stdio.h> 
#include <stdlib.h> 

int main(void) 

   unsigned int size, segp; 
   int stat; 

   size = 64; /* (64 x 16) = 1024 bytes */ 
   stat = allocmem(size, &segp); 
   if (stat == -1) 
      printf("Allocated memory at segment: %X\n", segp); 
   else 
   { 
      printf("Failed: maximum number of paragraphs available is %d\n", 
      stat); 
      exit(1); 
   } 

   stat = setblock(segp, size * 2); 
   if (stat == -1) 
      printf("Expanded memory block at segment: %X\n", segp); 
   else 
      printf("Failed: maximum number of paragraphs available is %d\n", 
             stat); 

   freemem(segp); 

   return 0; 

  
  

函数名: setbuf 
功  能: 把缓冲区与流相联 
用  法: void setbuf(FILE *steam, char *buf); 
程序例: 

#include <stdio.h> 

/* BUFSIZ is defined in stdio.h */ 
char outbuf[BUFSIZ]; 

int main(void) 

   /* attach a buffer to the standard output stream */ 
   setbuf(stdout, outbuf); 

   /* put some characters into the buffer */ 
   puts("This is a test of buffered output.\n\n"); 
   puts("This output will go into outbuf\n"); 
   puts("and won't appear until the buffer\n"); 
   puts("fills up or we flush the stream.\n"); 

   /* flush the output buffer */ 
   fflush(stdout); 

   return 0; 

  
  

函数名: setcbrk 
功  能: 设置Control-break 
用  法: int setcbrk(int value); 
程序例: 

#include <dos.h> 
#include <conio.h> 
#include <stdio.h> 

int main(void) 

   int break_flag; 

   printf("Enter 0 to turn control break off\n"); 
   printf("Enter 1 to turn control break on\n"); 

   break_flag = getch() - 0; 

   setcbrk(break_flag); 

   if (getcbrk()) 
      printf("Cntrl-brk flag is on\n"); 
   else 
      printf("Cntrl-brk flag is off\n"); 
   return 0; 

  
  
  

函数名: setcolor 
功  能: 设置当前画线颜色 
用  法: void far setcolor(int color); 
程序例: 

#include <graphics.h> 
#include <stdlib.h> 
#include <stdio.h> 
#include <conio.h> 

int main(void) 

   /* select a driver and mode that supports */ 
   /* multiple drawing colors.               */ 
   int gdriver = EGA, gmode = EGAHI, errorcode; 
   int color, maxcolor, x, y; 
   char msg[80]; 

   /* initialize graphics and local variables */ 
   initgraph(&gdriver, &gmode, ""); 

   /* 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 */ 
   } 

   /* maximum color index supported */ 
   maxcolor = getmaxcolor(); 

   /* for centering text messages */ 
   settextjustify(CENTER_TEXT, CENTER_T

上一页  [1] [2] [3] [4]  下一页

[数据载入中...] [返回上一页] [打 印]