Untitled

Anonymous
c_cpp
07/04/2024 11:03 AM
264 B
13
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