Ashwek Swamy
Ashwek Swamy
## Description __Sorting/Bubble Sort/C/BubbleSort.c__ (issue #396) removed the `scanf("%d",&n);` line __Maths/Factorial/C/factorial.c__ (issue #397) declared variable `n` before using it. called the function `factorial` ## Related Issue Fixing issue #396 and...
**Describe the bug** in __Maths/Factorial/C/factorial.c__: `scanf("%d",&n);` __n__ variable isn't declared `factorial` function is not called in main function **Expected behavior** `printf("Factorial = %lld", factorial(n));` should be added and declare `n`
**Describe the bug** in __Sorting/Bubble Sort/C/BubbleSort.c__ `int arr[] = {6, 4, 5, 8, 2, 1, 9};` `int n = sizeof(arr)/sizeof(arr[0]);` `scanf("%d",&n);` __
Fixes #112
A minor inconsistency in error handling between two functions in the ``Port`` type. In the ``Int`` function, there is a comment suggesting that the error should be ignored: https://github.com/docker/go-connections/blob/fa09c952e3eadbffaf8afc5b8a1667158ba38ace/nat/nat.go#L80-L87 However,...