fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char r = 6;
  6. int a = 6;
  7.  
  8. printf("%d %s %c \n",r,&r,r);
  9. printf("%d %s %c \n",a,&a,a);
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
6   
6