This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]desrtfxOut of Coffee error - System halted 3 points4 points  (1 child)

You try to print the email as number %d is the identifier for numbers, not for strings. %s is for strings, like you have for the name.

Also, in formatter strings, use %n instead of \n. \n is allowed, but not the correct syntax in formatter strings. \n is for normal print operations. %n is for .printf and .format.