fork download
  1. //op01.c
  2. #include <stdio.h>
  3.  
  4. int main(void) {
  5. // your code goes here
  6. int i;
  7. printf("a value of[i=20] is %d\n",i=20);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
a value of[i=20] is 20