Explain why c is faster than c++?


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

Post New Answer

More C Interview Questions

How can you convert integers to binary or hexadecimal?

0 Answers  


how to write a program which adds two numbers without using semicolon in c

2 Answers  


#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?

1 Answers   Wipro,


typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  


Can two or more operators such as and be combined in a single line of program code?

0 Answers  






What are the key features in c programming language?

0 Answers  


What is the difference between procedural and declarative language?

0 Answers  


Dear Sir, we are required the bubble sorting programs Regs Prem

1 Answers  


we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above

0 Answers  


What is data type long in c?

0 Answers  


What is indirection? How many levels of pointers can you have?

0 Answers   Aspire, Infogain,


how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...

1 Answers   Infosys,


Categories