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 |
What are the three constants used in c?
What is local and global variable in c?
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
Explain about block scope in c?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
What are the advantages of using linked list for tree construction?
what is linkage error when it occurs in c program
What is file in c language?
write a program that uses point of sale system. which are mainly used by retail markets, where the is a database inventory list, a slip should be printed for the customer. manage should be able to access what has been sold and what is left from stock?
Do character constants represent numerical values?
is it possible to create your own header files?
How does pointer work in c?