Why is python slower than c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

any "C" function by default returns an a) int value b) float value c) char value d) a & b

0 Answers  


Why is c still so popular?

0 Answers  


Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return - 1. The function should not make use of any C library function calls.

3 Answers   Google, Infosys, JTL, OpenFeel,


what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }

4 Answers  


Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors

3 Answers  


Write a program to print numbers from 1 to 100 without using loop in c?

0 Answers  


Who is the founder of c language?

0 Answers  


In scanf h is used for

4 Answers   BFL,


What is pass by value in c?

0 Answers  


what is the difference between %d and %*d in c languaga?

7 Answers   TCS,


What are the different types of C instructions?

0 Answers   InterGraph,


#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

2 Answers   Facebook,


Categories