fork(1) download
  1. volatile unsigned char flag=0;
  2. extern unsigned char flag;
  3.  
  4. int main(void)
  5. {
  6. // 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:2:22: error: conflicting type qualifiers for ‘flag’
 extern unsigned char flag; 
                      ^
prog.c:1:24: note: previous definition of ‘flag’ was here
 volatile unsigned char flag=0; 
                        ^
stdout
Standard output is empty