fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int v = 2, a = 24, r;
  6. r=a>>v;
  7. r=r+a;
  8. printf(" %d", r);
  9. return 0;
  10. }
Success #stdin #stdout 0s 4536KB
stdin
Standard input is empty
stdout
 30