Computer Science, asked by Emarled, 9 months ago

what will the be the output of the following code. print ('hello) print ('My name is Misha')​

Answers

Answered by unmana53
3

Answer:

The output will be Hello. My name is Misha

Answered by Anonymous
31

A- [code] int i=17 , j=5 i -= j /* i=17-5 = 12*/ j= i+ 21; /* j =12+21=33*/ cout <<"the value of i is:"<<i<<"\n"; cout < <"the value of j is:"<<j<<"\n"; [/code] O/P: the value of i.

Similar questions