Guest User

Untitled

a guest
Apr 23rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <conio.h>
  3. #include <string.h>
  4. #include <stdlib.h>
  5.  
  6.  
  7. typedef struct //Bekanntmachen des Structs
  8. {
  9. int Artikelnummer;
  10. }name;
  11.  
  12.  
  13. void fn_datenausgabe(name bamm)
  14. {
  15. printf("preis: %d",bamm.Artikelnummer);
  16. }
  17.  
  18. int main (void)
  19. {
  20. name bamm={4};
  21.  
  22. fn_datenausgabe(&bamm);
  23. system("pause");
  24. }
Add Comment
Please, Sign In to add comment