fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char a='X',b='Y',c='Z';
  5. printf("%c\n",a);
  6. printf("%c\n",b);
  7. printf("%c\n",c);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5316KB
stdin
Standard input is empty
stdout
X
Y
Z