Code360 powered by Coding Ninjas X Naukri.com. Code360 powered by Coding Ninjas X Naukri.com

Predict the output

Easy
0/10

Problem statement

Predict the output by the following C++ code snippet.

#include <iostream>
using namespace std;

int main() {
    int a = 10, b = 5, c = 5;
    int d;
    d = b + c == a;
    cout << d;
}
Options: Pick one correct answer from below