What are the benefits of oop?
No Answer is Posted For this Question
Be the First to Post Answer
what is oppes
What is virtual Function.
What is operator overloading? Give Example
11 Answers CTS, IBM, TCS,
What is difference between class and object with example?
#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 function overloading and operator overloading?
How Do you Code Composition and Aggregation in C++ ?
what is a binary overloading
char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output
design class for linked list and include constructor,destructor,insert option. node of form struct node { int data; struct node &ptr; }
What are the valid types of data that the main () can return in C/C++ language
what are the disadvantages of C++?
25 Answers ATS, Infosys, UNI, Wipro,