who is the founder of c++?

Answers were Sorted based on User's Feedback



who is the founder of c++?..

Answer / ven

Bjarne Stroustrup

Is This Answer Correct ?    310 Yes 12 No

who is the founder of c++?..

Answer / sangeetha

bjarne stroustrup

Is This Answer Correct ?    104 Yes 8 No

who is the founder of c++?..

Answer / nagendra.c

Bjarne stroustrup

Is This Answer Correct ?    85 Yes 5 No

who is the founder of c++?..

Answer / arun

Bjarne stoustrup

Is This Answer Correct ?    61 Yes 7 No

who is the founder of c++?..

Answer / biresh john

Bjarne Stoustrup

Is This Answer Correct ?    49 Yes 7 No

who is the founder of c++?..

Answer / chakilamvani@yahoo.com

Bjarne stroustrup

Is This Answer Correct ?    4 Yes 1 No

who is the founder of c++?..

Answer / neeraj bhat

Bjarne Stroustrup

Is This Answer Correct ?    1 Yes 0 No

who is the founder of c++?..

Answer / sachin.m

Bjarne stroustrup

Is This Answer Correct ?    1 Yes 0 No

who is the founder of c++?..

Answer / navya

ROHINI

Is This Answer Correct ?    1 Yes 1 No

who is the founder of c++?..

Answer / hans

denise ritchie

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More OOPS Interview Questions

What makes a language oop?

0 Answers  


What is difference between multiple inheritance and multilevel inheritance?

0 Answers  


Why is object oriented programming so hard?

0 Answers  


What does <> mean pseudocode?

0 Answers  


What are virtual classes?

0 Answers  






#include <stdio.h> #include <alloc.h> #include <stdlib.h> #include <conio.h> void insert(struct btreenode **, int); void inorder(struct btreenode *); struct btreenode { struct btreenode *leftchild; struct btreenode *rightchild; int data; }; main() { struct btreenode *bt; bt=(struct btreenode *)NULL; int req,i=1,num; clrscr(); printf("Enter number of nodes"); scanf("%d",&req); while(i<=req) { printf("Enter element"); scanf("%d",&num); insert(&bt,num); i++; } inorder(bt); } void insert(struct btreenode **sr, int num) { if(*sr==NULL) { *sr=(struct btreenode *)malloc (sizeof(struct btreenode)); (*sr)->leftchild=(struct btreenode *)NULL; (*sr)->rightchild=(struct btreenode *)NULL; (*sr)->data=num; return; } else { if(num < (*sr)->data) insert(&(*sr)->leftchild,num); else insert(&(*sr)->rightchild,num); } return; } void inorder(struct btreenode *sr) { if(sr!=(struct btreenode *)NULL) { inorder(sr->leftchild); printf("\n %d",sr->data); inorder(sr->rightchild); } else return; } please Modify the given program and add two methods for post order and pre order traversals.

0 Answers  


What is multilevel inheritance?

0 Answers  


What is the main purpose of inheritance law?

0 Answers  


What is encapsulation c#?

0 Answers  


Definition of Object Oriented Programming in single line?

33 Answers   Impact Systems, Q3 Technologies, TCS,


What is an advantage of polymorphism?

0 Answers  


what is single inheritance?

18 Answers   IBM,


Categories