fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. char c,c1;
  6. scanf("%c",&c);
  7. scanf("%c",&c1);
  8. printf("c = %c\n",c);
  9. printf("c1 = %c\n",c1);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5324KB
stdin
A
D
stdout
c = A
c1 =