fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char x;
  5. int p=0;
  6.  
  7. x='a';
  8. p = x;
  9. printf("%d",p);
  10. }
Success #stdin #stdout 0s 4396KB
stdin
Standard input is empty
stdout
97