fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #define k 7
  5.  
  6. int main(){
  7. char arr[k] = "asdfa";int i, j, a, b, c, x = false;for(i = 0; i < 255; i++){for(j = 0; j < k; j++){if(arr[j] == i){x = false;for(b = 0; b < k; b++){if(b != j && arr[b] == i)x = true;}if(x == false)printf("%c \n", i);}}}
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
d 
f 
s