Answer Posted /

Is This Answer Correct ?    Yes No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Mention what is the importance of nonactionattribute?

1


what methods would you overwrite in java.lang.object class?

546


What is the latest c++ standard?

663


What are pl sql data types?

542


What is the process to register the Plug-in in CRM?

325






What is the default access modifier for a class,struct and an interface declared directly with a namespace?

538


Why don't you continue in research?

741


What is directive order?

433


What information is required when TCP/IP is configured on Window Server?

116


#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

2153


What are the different versions of css?

256


Which is better html or css?

272


The size of shaper is specified by ?

664


What is the importance of gentlemanliness?

1867


What will be the cause of scavenging fire?

1551