Romantic Putchar (), with the number to the girlfriend to vindicate it (PS: Single Wang do not enter)
Putchar () functions in this program: the numbers here represent the ASCII values of the corresponding characters, such as Putchar () represents W
Program:
#include <stdio.h>
int Main ()
{
Putchar (87);
Putchar (111);
Putchar (' \ t ');
Putchar (88);
Putchar (117);
Putchar (97);
Putchar (110);
Putchar (' \ t ');
Putchar (76);
Putchar (105);
Putchar (' \ t ');
Putchar (88);
Putchar (105);
Putchar (97);
Putchar (111);
Putchar (33);
Putchar (' \ n ');
return 0;
}
Results:
Wo Xuan Li xiao!
Please press any key to continue ...
This article is from the "Rock Owl" blog, please be sure to keep this source http://yaoyaolx.blog.51cto.com/10732111/1739704
C Language: Romantic Putchar (), with the number to the girlfriend vindicate it (PS: Single Wang do not enter)