fork(2) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. int a = 5;
  7. int b = 7;
  8.  
  9. if(a == b)
  10. {
  11. printf("a is equal to b");
  12. }
  13.  
  14. printf("a is not equal to b");
  15.  
  16. }
Success #stdin #stdout 0s 4552KB
stdin
Standard input is empty
stdout
a is not equal to b