using namespace std; struct str { int pole1; int pole2; float pole3; }; int main(int argc, char *argv[]) { str str1; str1.pole1=10; str1.pole2=20; str1.pole3=33.33; cout<<"w funkcji main pole2= "< cout<<"w funkcji main pole3= "< cout<<"w funkcji main pole1= "< system("PAUSE"); return EXIT_SUCCESS; }