fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. unsigned char age=18;
  5. printf("age에 저장된 값:%d\n",age);
  6. seturn 0;
  7. }
  8.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:6:2: error: ‘seturn’ undeclared (first use in this function)
  seturn 0;
  ^~~~~~
prog.c:6:2: note: each undeclared identifier is reported only once for each function it appears in
prog.c:6:9: error: expected ‘;’ before numeric constant
  seturn 0;
         ^
stdout
Standard output is empty