what is c++ programming?
Answers were Sorted based on User's Feedback
Answer / savitha
c++ is object oriented programming language... it has special functions such as class, polymorphism ,inheritance ,encapsulation , data abstraction...hence we can develop programs which relates to objects makes us easy to understand
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / renisha
c++ is powerful general purpose system. it used objects,
classes, functions. it used to compiler that input and
display the output. it can use more information. user can
use variety of information whatever they needs.
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / premnath
C++ is a Object Oriented Programming Language which is derived from C.
C++ is a general purpose language and is invented by "Bjarne Stroustrup" .
The main features of C++(OOP) are :
Operators and operator overloading,
Classes,
Objects,
Encapsulation,
Inhiritence,
Polymorphism &
Templates.
| Is This Answer Correct ? | 2 Yes | 2 No |
Why void main is used in c?
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
What does 4d mean in c?
why i join syntel?
23 Answers ABC, Syntel, TCS,
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
Write code for initializing one dimentional and two dimentional array in a C Program?
5 Answers Deshaw, Edutech, GMD,
What is difference between array and structure in c?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
Write a program to reverse a given number in c?
Difference between strcpy() and memcpy() function?
Why are algorithms important in c program?
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}