close

code snippets(一):islower(參數),判斷是否為小寫英文字母。

#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

int main(int argc, char *argv[])
{
	//islower(參數)
	//參數:是否為小寫英文字母,條件成立,回傳非 0 值,否則回傳 0。
	if(islower('A'))
	{
		printf("參數是小寫字元\n");
	}
	else
	{
		printf("參數非小寫字元\n");
	}
	return 0;
}
//Answer:參數非小寫字元
arrow
arrow
    文章標籤
    islower(int c)
    全站熱搜

    mitblog 發表在 痞客邦 留言(0) 人氣()