在C語言中,可以使用printf函數來打印字符。以下是打印字符的幾種常見方式:
char ch = 'A'; printf("%c\n", ch);
char str[] = "Hello"; printf("%s\n", str);
int ascii = 65; printf("%c\n", ascii);
以上代碼中,%c是格式化字符的占位符,用于打印一個字符。%s用于打印字符串,直到遇到字符串結束符’\0’為止。%d用于打印整數。
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業務經營許可證編號:B1-20181529