Can we override main method?
No Answer is Posted For this Question
Be the First to Post Answer
to remove the repeated numbers from the given . i.e.., if the input is 12233 output should of 123
what is the difference between a package and a software?
#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> 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
what is cast operator?
How to improve object oriented design skills?
what is the application of oops?
swapping program does not use third variable
What is memory leak and memory corruption?
why to use template classes in c++?
write a C++ program for booking using constructor and destructor.
What is multilevel inheritance?
Why do we use virtual functions?