Computer Science, asked by tina411, 1 year ago

in c++ where we put c in​

Answers

Answered by Amankumar1234davnit
1

Explanation:

// conditional operator

#include <iostream>

using namespace std;

int main ()

{

int a,b,c;

a=2;

b=7;

c = (a>b) ? a : b;

cout << c << '\n';

Similar questions