Advertisement
DominikPasiut

Untitled

Jan 26th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.51 KB | None | 0 0
  1. #ifndef MY_HEADER_H
  2. #define MY_HEADER_H
  3.  
  4. #endif // MY_HEADER_H
  5.  
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8.  
  9. /*Deklaracje zmiennych*/
  10.  
  11. char wyborProgramu;     //do switcha
  12.  
  13. /* Opcja DODAWANIE */
  14. int iloscLiczb;         //Ile liczb użytkownik chce dodać
  15. double *arrayOfNumbers; //tablica liczb
  16. double result;       //wynik dodawania
  17.  
  18.  
  19.  
  20. /*Deklaracje funkcji*/
  21. double dodawanie (double* array, double* sum, int size);         //Przyjmuje wskaźnik do ilości elementów do dodania
  22. //void wczytajDane ();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement