Write a program to reverse a string using recursive function?
No Answer is Posted For this Question
Be the First to Post Answer
What is the highest level of cohesion?
Round up a Decimal number in c++.. example Note = 3.5 is as 4 3.3 is as 3
3 Answers Accenture, Cognizant, IBM,
If a=5, b=6, c=7, b+=a%c*2. What is the final value of b?
Write a C++ program to conduct an election of a mayor.Declare a class ELECTION With the following specification: Data member: Name 25 character Age Integer symbol 1 character Member functions: To accept data for 20 contestant To accept symbol as voting from 100 voters. To declare the winner and the loser.
1 Answers Global Academy, Infotech,
how can we design a magic square in c++?or suggest me the basic idea of it.
What is use of overloading?
Can we create object of class with private constructor?
char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output
what do you mean by static member variable?
#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 the point of oop?
what is namespace? what are the uses of namespace?