fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes her
  5. int a=10;
  6. int const &b = a;
  7. a=11;
  8. printf("%d %d",a, b);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5296KB
stdin
Standard input is empty
stdout
11 11