Untitled
unknown
c_cpp
a year ago
196 B
8
Indexable
#include <iostream>
int main()
{
int obiekt = 5;
int* tempWsk = &obiekt;
auto* wsk1 = &obiekt;
auto* wsk2 = tempWsk;
auto* wks2 = &tempWsk;
return 0;
}
Editor is loading...
Leave a Comment