fork download
  1. #include <stdio.h>
  2. #include <stdint.h>
  3.  
  4. volatile uint16_t a=0xffff, b =1000;
  5.  
  6. int main(void) {
  7.  
  8. volatile uint32_t c = a+b;
  9.  
  10. printf("%llu\n", (unsigned long long)c);
  11. // your code goes here
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 4436KB
stdin
Standard input is empty
stdout
66535