Which is faster post increment or pre increment ? and in
which cases should u use either - to increase speed?

Answer Posted / zuber

extreme stage

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What do you mean by Encapsulation?

640


What is the renewal class?

2161


Why do we use oop?

603


What are two types of polymorphism?

608


What is for loop and its syntax?

596






What is a class and object?

595


Can an interface inherit a class?

557


Why is polymorphism used?

583


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2164


What does and I oop and sksksk mean?

650


How do you achieve runtime polymorphism?

569


What is balance factor?

582


What is multilevel inheritance?

723


What is oops in programming?

562


What are the types of abstraction?

553