Why is python slower than c?
Answer / Manoj Singh Bisht
Python is generally slower than C because Python is an interpreted language, while C is a compiled language. Interpreted languages execute instructions line by line, which can lead to slower performance compared to compiled languages that convert the entire program into machine code before execution.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is c language & why it is used?
WHAT IS MEANT BY LIFE?
Do you have any idea how to compare array with pointer in c?
What is c standard library?
What is modeling?
could u able to tell about suresoft technical session
What is c language and why we use it?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
write a c program to convert fahrenheit to celsius?
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
Explain function?
Can we include one C program into another C program if yes how?