Chain function access code for fun

int main()
{
printf("%d\n", printf("%d", printf("%d", 43)));
system(“pause”);
return 0;
}

Print 1234 results
because returns the number of characters to print printf function

Guess you like

Origin blog.csdn.net/belongHWL/article/details/90140791