fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. typedef struct {
  5. char imie[20];
  6. int numer[2];
  7. } osoba;
  8.  
  9.  
  10. int main() {
  11. osoba student;
  12. printf("Podaj numer pesel Studenta ");
  13. scanf("%d", &student.numer[0]);
  14. printf("Podaj numer indeksu Studenta ");
  15. scanf("%d", &student.numer[1]);
  16. // czyscimy bufor aby uniknac problemow z pobieraniem
  17. printf("podaj imie Studenta ");
  18. gets(student.imie);
  19.  
  20. printf("\nNumer pesel Studenta to %d, jego indeksu to %d a imie %s\n", student.numer[0], student.numer[1], student.imie);
  21. system ("pause");
  22. return 0;
  23. }
  24.  
Success #stdin #stdout #stderr 0s 4352KB
stdin
88020224351
61316
Hubert
stdout
Podaj numer pesel Studenta Podaj numer indeksu Studenta podaj imie Studenta 
Numer pesel Studenta to 2120878431, jego indeksu to 61316 a imie Hubert
stderr
sh: 1: pause: not found