Are C functions slower in .m files than in the .c files? Does someone know any performance tests?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Files are not fast or slow. They are compiled, and linked in a binary. I assume you are asking about the speed of an executable compiled from such files.
The problem is, then, the compiler. If you compile your code from the .c files with the same compiler than the .m files, and it is optimised, the result will be the same.