-
Fix Function
Write the implementation of Fix function? fix(2.5) = 2 and fix(-2.25) = -3, this is the expected result. Write the code to implement this behaviour?
-
Compare Two Files in C
Write a program that compares two files and return 0 if they are equal and 1 if they are not equal.