fork download
  1. #include <stdio.h>
  2. int main( )
  3. {
  4. printf("이름:\n", "%s박진현");
  5. printf("나이: %d살",19);
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 5296KB
stdin
Standard input is empty
stdout
이름:
나이: 19살