fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a;
  5. char b;
  6. scanf("%d %c", &a, &b);
  7. printf("a는 %d, b는 %c입니다.", a, b);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
a는 32767, b는 �입니다.