C語言中的putchar(int char)方法用於將無符號字符類型的字符寫入stdout。該字符作為參數傳遞給此方法。
用法:
int putchar(int char)
參數:此方法接受強製性參數char,該參數是要寫入stdout的字符。
返回值:此函數以無符號字符的形式返回寫在標準輸出上的字符。發生某些錯誤時,它還會返回EOF。
以下示例說明了putchar()方法的使用:
範例1:
// C program to demonstrate putchar() method
#include <stdio.h>
int main()
{
// Get the character to be written
char ch = 'G';
// Write the Character to stdout
putchar(ch);
return (0);
}
輸出:
G
範例2:
// C program to demonstrate putchar() method
#include <stdio.h>
int main()
{
// Get the character to be written
char ch = '1';
// Write the Character to stdout
for (ch = '1'; ch <= '9'; ch++)
putchar(ch);
return (0);
}
輸出:
123456789
相關用法
- C語言 tolower()用法及代碼示例
- C語言 strlwr()用法及代碼示例
- C++ iswblank()用法及代碼示例
- C++ exp2()用法及代碼示例
- C++ raise()用法及代碼示例
- C++ feupdateenv()用法及代碼示例
- C++ iswpunct()用法及代碼示例
- C++ towupper()用法及代碼示例
- C++ iswxdigit()用法及代碼示例
- C語言 strrev()用法及代碼示例
- C++ atexit()用法及代碼示例
- C++ strcspn()用法及代碼示例
注:本文由純淨天空篩選整理自RishabhPrabhu大神的英文原創作品 putchar() function in C。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。