1
Hello!
How do I put something after the variable in a printf. Ex:
printf("Digite um valor para a posição: [%d", l); printf(" ,%d", c); printf(" ]");
I am using the example above, but I was wondering if it is possible to do something similar to pseudocode: Ex:
printf("Digite um valor para a posição: [%d", l, ",", c, " ]");
The end result would be something like:
Type a value for position [ x, y]: