fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. Set a=10
  5. Set b=20
  6. Set c= a + b// your code goes here
  7. return 0;
  8. }
  9.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function 'main':
prog.c:4:2: error: unknown type name 'Set'
  Set a=10
  ^
prog.c:5:2: error: expected ',' or ';' before 'Set'
  Set b=20
  ^
prog.c:4:6: warning: unused variable 'a' [-Wunused-variable]
  Set a=10
      ^
stdout
Standard output is empty