While I know printf() returns the number of characters it prints, I am having problem with the & (or any other character in fact) in this code:
How does it interact to provide the output?
Thanks.
printf("%d",printf("%d %d",2,2) & printf("%d %d", 2, 2));
How does it interact to provide the output?
Thanks.