All is well | ||||||
| ||||||
Description | ||||||
All is well means “All is well” | ||||||
Input | ||||||
NULL | ||||||
Output | ||||||
All is well\n | ||||||
Sample Input | ||||||
NULL | ||||||
Sample Output | ||||||
All is well\n
| ||||||
Source | ||||||
杨和禹求职记 | ||||||
Author |
关键是‘\n‘的输出技巧之一是运用显示,asc码转化,代码如下;#include<stdio.h>
int
main()
{
printf("All is well");
printf("%c",92);
printf("n\n");
return 0;
}