1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#include <stdio.h> //: dvojice struct dvojice { float x, y; }; //: uzasna_funkce struct dvojice uzasna_funkce (float p) { struct dvojice navrat; navrat.x = 2*p; // tady nasobim p dvema navrat.y = 3*p; // tady nasobim p tremi return navrat; }