fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a;
  6. float b;
  7. char c;
  8. a = 1;
  9. b = 2.5;
  10. c = 'A';
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
Standard output is empty