Answer Posted /

Is This Answer Correct ?    Yes No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What do you mean by Inductive Logic Programming (ILP)?

64


How would you open a file in read-only mode using the vim editor?

470


Is exe file a virus?

497


How the trx is assigned to e1 channel?

2665


What is an outlier?

88






What is php and how do you use it?

528


What is @data annotation in spring boot? : Spring Boot

191


Explain the hdfs architecture and list the various hdfs daemons in hdfs cluster?

30


what is difference between destruct or and garbage collection ?

508


What is the console in java?

674


How do I stop pid 4 from using port 80?

598


How will the Department automatically update the standard salary level and HCE total annual compensation requirement?

5


how can i install windows-xp operating system in single time to 50 computersconnected in a LAN.

1848


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

2066


Explain interfaces?

460