4. What is the result of the expression i++?
Answers
Answered by
1
Answer:
here ur answer
#include <iostream>
using namespace std ;
void myFunction(int i)
{
i = i + 2 + ++i;
cout<<i<<endl;
}
void main ()
{
int i = 2;
myFunction(i);
cin>> i;
}
Explanation:
mark brainlist
follow me if it helps you
Similar questions