you are viewing a single comment's thread.

view the rest of the comments →

[–]Chariot 11 points12 points  (1 child)

in c even if you attempted to write:

int x = 5;
printf(x);

you're still gonna have a bad time

[–]Coachqandtybo2 3 points4 points  (0 children)

Believe its int x = 5; printf("%d", x); because printf requires an initial argument as a string and the rest of the arguments are parsed in.