fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int max = 30;
  5. printf("\n| %*s | %8s | %8s |", max, "Nome", "Salario", "Idade");
  6. printf("\n| %.*s | %8s | %8s |", max, "Nome", "Salario", "Idade");
  7. max = 3;
  8. printf("\n| %*s | %8s | %8s |", max, "Nome", "Salario", "Idade");
  9. printf("\n| %.*s | %8s | %8s |", max, "Nome", "Salario", "Idade");
  10. }
  11.  
  12. //https://pt.stackoverflow.com/q/39389/101
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
|                           Nome |  Salario |    Idade |
| Nome |  Salario |    Idade |
| Nome |  Salario |    Idade |
| Nom |  Salario |    Idade |