fork(4) download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. double a[10];
  5.  
  6. int main() {
  7. memset(a,-1,sizeof(a));
  8. if(a[0]==a[1]) printf("Yes\n"); //I bet you expect this to happen
  9. else printf("No\n");
  10. return 0;
  11. }
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
No