换行符转化为ASCII码

2024-12-03 16:49:45
推荐回答(1个)
回答(1):

\n=10;

#include
int main(void)
{
 char ch='\n';
 printf("%d",ch);
 }