Robotics C++ Physics II AP Physics B Electronics Java Astronomy Other Courses Summer Session  

What Happens When You Run This Code?

#include "stdafx.h"

#include <iostream>

using namespace std;

 

int main()

{

  int n = 0;

  int m = 5;

  bool b = (n == 0) || (m/n > 2);

  cout<<("This code works without error!")<<endl;

  return 0;

}