what is difference between C and C++
Answers were Sorted based on User's Feedback
C is structure oriented Designing language where as C++ is
Object oriented language
C is used for creating System level programs and c++ is used
for creating application programs and GUI
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / nataraj
c is an basic language, and c++ is advanced language.and c
is an basic of the program.
| Is This Answer Correct ? | 12 Yes | 1 No |
Answer / sight
Hi!!
C is basically developed for Structured programming...
C++ is developed for Object Oriented Programming..
C we can't use Inheritance,Polymorphism.etc..Concepts
C++ we can use this concepts...
C is not as secured compared to C++
C++ is more secure than C b'coz it use Object Oriented
concepts..
C is to Down Approach
C++ is Bottom top Approach..
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / kalyanram
c is a procedural oriented language ,in c there is no
security & reusabulity concepts
in c++ lan object oriented language this provide concept of
class,inheritance ..so it is more security
| Is This Answer Correct ? | 5 Yes | 0 No |
Why preprocessor should come before source code?
What are unions in c?
What is volatile variable in c?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
Why cant I open a file by its explicit path?
What are dynamically linked and statically linked libraries?
What are the c keywords?
What are structures and unions? State differencves between them.
Which are low level languages?
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
What are the different types of endless loops?