correct the c++ statement cout<<"p="p;
Answers
Answered by
0
#include <iostream>
using namespace std;
int main()
{
int p = 50;
cout << p << endl;
return 0;
}
// Your question is not written correctly, tell me more about the variable p.
Similar questions