Which sorting algorithm is the best?
Answer / glibwaresoftsolutions
Bubble sort, fast sort, balloon sort, merge sort, radix sort, and more are examples of the various kinds of sorting algorithms.
Since each algorithm was created for a certain kind of data structure where it works best, none of them can be regarded as the best or fastest.
| Is This Answer Correct ? | 0 Yes | 0 No |
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
what is dangling pointer?
What is an example of structure?
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
Is main() function predfined or userdefined?
what is the difference between <stdio.h> and "stdio.h"
14 Answers Invendis, Kanbay, Mastek, MathWorks,
Write the control statements in C language
What is array of pointers to string?
What is the difference between %d and %*d in C
What is the main differences between C and Embedded C?
What does c mean in standard form?
what does exit() do?