Last active
August 29, 2015 14:15
-
-
Save tyfkda/e37a7b1d800597c003a3 to your computer and use it in GitHub Desktop.
printfで引数の順番を指定して参照する ref: http://qiita.com/tyfkda/items/c5847f2139a77100f760
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // %n$... でn番目の引数を参照する | |
| printf("%2$d\n", 111, 222); // => 222 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment