what’s output
#include<iostream>
using namespace std;
int main(){
int a;
a=200;
cout<<++a;
a-=45;
cout<<a—;
}
What will be the output of the program?
If you like this question, have a look at Simplified c++ app by hegdeapps
Comments
Post a Comment