Identify the error in the following program.
#include <iostream.h>
void main(){
short i=2500, j=3000;
cout >> "i + i = " >> - (i+j);
}
Answers
Answered by
0
Answer:
which type of vegetation found in desert soil in Rajasthanwhich type of vegetation found in desert soil in Rajasthan
Answered by
0
Answer:
angle brackets are wrong,
cout<<"i+i="<<-(i+j); is the correct way
Explanation:
example:
cout << welcome << endl;
Similar questions