Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - prototype.c
Search - prototype.c - List
Turbo C提供了非常丰富的图形函数, 所有图形函数的原型均在graphics. h 中, 本节主要介绍图形模式的初始化、独立图形程序的建立、基本图形功能、图形窗口以及图形模式下的文本输出等函数。另外, 使用图形函数时要确保有显示器图形驱动程序*BGI, 同时将集成开发环境Options/Linker中的Graphics lib选 为on, 只有这样才能保证正确使用图形函数。-Turbo C provides a very rich graphical functions, all the graphics functions of the prototype are in graphics. H in, this section focuses on the initialization of graphics mode, the establishment of an independent graphics program, the basic graphics functions, graphics window, as well as graphics mode text output and other functions. In addition, when using the graphics function is to ensure that display graphics drivers* BGI, while Integrated Development Environment Options/Linker in the Graphics lib voted on, the only way to ensure the proper use of graphics functions.
Date : 2025-12-24 Size : 21kb User : 刘宏令

C语言函数库速查手册,chm格式 原型:extern int isalnum(int c) 用法:#include <ctype.h> 功能:判断字符c是否为字母或数字 说明:当c为数字0-9或字母a-z及A-Z时,返回非零值,否则返回零。 举例: // isalnum.c #include <syslib.h> #include <ctype.h> main() { int c clrscr() // clear screen c= a printf(" c: s\n",c,isalnum(c)?"yes":"no") c= 7 printf(" c: s\n",c,isalnum(c)?"yes":"no") c= @ printf(" c: s\n",c,isalnum(c)?"yes":"no") getchar() return 0 } 相关函数:isalpha,isdigit,isxdigit,iscntrl,isgraph,isprint,ispunct,isspace-C language library Quick Fact Sheet, chm format, the prototype: extern int isalnum (int c) Usage:# include <ctype.h> Function: to determine whether the letter or character c figures show: When c is the number 0-9 or the letters az and AZ, the returned non-zero value, otherwise returns zero. For example:// isalnum.c# include <syslib.h># include <ctype.h> main () (int c clrscr () // clear screen c = ' a' printf ( " c: s \ n" , c, isalnum (c)? " yes" : " no" ) c = ' 7 ' printf ( " c: s \ n" , c, isalnum (c)? " yes" : " no" ) c =' @' printf ( " c: s \ n" , c, isalnum (c)? " yes" : " no" ) getchar () return 0 ) correlation functions: isalpha, isdigit, isxdigit, iscntrl, isgraph, isprint, ispunct, isspace
Date : 2025-12-24 Size : 81kb User : 成宝民
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.