using namespace std; struct str { int pole1; int pole2; float pole3; };
int struktura_f(str s);
int struktura_f(str s) { cout<<"w funkcji struktura_f: pole2= "< return s.pole1+s.pole2; };
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= "< cout<<"pole1+pole2= "< system("PAUSE"); return EXIT_SUCCESS; }