Mam za zadanie znaleźć błędy w kodzie i poprawić je. Proszę o pomoc.
#include<iostream>
using namespace std;
struct S {
S(int i){ this->x = i;} // tutaj wskaźnik ??
~S(){}
int x;
static const int sci = 200;// jak static to nie const
int y = 999;
}
void main(){
S *ps = new S(300);
ps->x = 400;
S s;
s.x = 500;
}