Sunday 21 June 2020

CPP Program to compare three variables with an input and to find out the output

Source Code : 
#include<iostream>
#include<stdio.h>
using namespace std;
int main ()
{
int x,y,z;
y=5;
z=5;
x=y==z;
return 0;
}

Program Output : 


No comments:

Post a Comment