fork download
  1. #include <stdio.h>
  2. #include <stdint.h>
  3.  
  4. uint8_t probe() {
  5. return 255;
  6. }
  7.  
  8. int main(void) {
  9. auto x = probe();
  10. if (!++x) {
  11. puts("C++");
  12. } else {
  13. puts("C");
  14. }
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
C