Answer:
2,3,4
Explanation:
Starts at two, goes to four. Thus it prints 2,3,4
B.suspended because revoked only happens when it's a felony or reckless,and not cancellations because it would have to be false information.
Relational operators allow an end user to <u>compare</u> numbers.
<h3>What are
relational operators?</h3>
Relational operators can be defined as a programming language construct which allows an end user to compare both numbers and char values.
Also, it can be used to determine whether one number is less than (<), greater than (>), equal to (=), or not equal to another.
This ultimately implies that, relational operators allow an end user to <u>compare</u> numbers.
Read more on relational operators here: brainly.com/question/14995818
#SPJ1
Answer:
#include <iostream>
using namespace std;
void swap(int& m, int& n) /* passing by reference so that changes will be made in the original values.*/
{
int t=m;
m=n;
n=t;
}
int main()
{
int val1,val2;
cout<<"Enter the values"<<endl;
cin>>val1>>val2;
cout<<"Values before swap "<<val1<<" "<<val2<<endl;
swap(val1,val2);
//calling the function swap..
cout<<"Values after swap "<<val1<<" "<<val2<<endl;
return 0;
}
Explanation:
Created a function swap with 2 arguments m and n passed by reference.