通常在糊业务代码的时候,不管是函数、方法,还是宏,都只会有一个返回值。比如在C语言用于检查一个字符是否为阿拉伯数字的isdigit函数就只会返回是(1)或否(0) 12345678910#include <ctype.h>#include <stdio.h>intmain(int argc, char *argv[]){ char c = 'a'; p