Computer Science, asked by akshitsharma4114, 1 year ago

Evaluate the following C++ expressions. (i) int a = 5, b = 7, c; c= a * a + b * b

Answers

Answered by nitish8089
11
answer 74::
not satisfy check out the screenshot
Attachments:
Answered by spsinghgni
10

The answer is 74

include <iostream>

using namespace std;


int main( ) {

 int  a=5 , b=7 , c;

 C = a * a + b * b;

 Cout<<C;

 return 0;

}

Similar questions