who is the founder of c++?

Answer Posted / hans

denise ritchie

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

just right the logic of it 1--> If few people are electing then every time ur candidate should win 2--> arrange books in box, if box carry weight == books weight then take another box..... find the no of box required.

6489


What is a class and object?

600


What is the difference between encapsulation and polymorphism?

598


What is oops?what is its use in software engineering?

560


How do you define a class in oop?

631






Why is destructor used?

587


write a program that takes input in digits and display the result in words from 1 to 1000

1994


Can you explain polymorphism?

584


#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

2070


if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?

2764


What is inheritance in oop?

605


What is oops and its features?

592


What is the point of oop?

660


Who invented oop?

659


What are the two different types of polymorphism?

675