Eksperymenty z asemblerem ARMv7
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fibb_c.c 206B

12345678910111213141516
  1. #include <stdio.h>
  2. // Jan Potocki 2020
  3. unsigned long fibb(unsigned long n);
  4. int main()
  5. {
  6. unsigned long term, result;
  7. scanf("%lu", &term);
  8. result = fibb(term);
  9. printf("%lu\n", result);
  10. return 0;
  11. }