Thread: Difference between C, C++ and Java? Reply to Thread

Your Username: Click here to log in
Title:
  
Message:
Post Icons
You may choose an icon for your message from the following list:
 

Additional Options

Miscellaneous Options

Topic Review (Newest First)

8th April 2019 02:02 PM
Unregistered
Re: Difference between C, C and Java?

Sir, I have completed my B.TECH. but still i am very interest in software. I want to attend the interview. so kindly give me the answer as soon as possible. If you have any other answer(hint) for it plz send it as well.mail id - [email protected]

Thank u,
Mohd Irfan
23rd January 2014 08:09 PM
Unregistered
Re: Difference between C, C and Java?

for (B.E.,)(ECE) candidates how the questions will be raised from the IT Companies based on c,c ,java
28th October 2012 05:28 PM
Unregistered
Re: Difference between C, C++ and Java?

Quote:
Originally Posted by Shagun Makin View Post
Dear C++ is advanced form of C.
Firstly comes the language A i.e. Algol and then comes B i.e. Basic programming language then comes the BCPL i.e. basic combined programming Language.

Then after that the language C comes i.e. Combined programming language.

and C++ is advanced form of C language.

This is one of the main question which is always asked in interviews.

Hope this information will help you.
,,,,,,,,,,,,,,,,,,,,,,,,,,,
24th July 2012 02:04 AM
Unregistered
Re: Difference between C, C and Java?

why we cant use pointer in java?
13th July 2012 02:27 PM
ankur bana
Re: Difference between C, C++ and Java?

the main difference between c and c plus plus is that c is a procedure oriented language where as cpp is an object oriented language we can compile and and execute all our cprograms in a cpp compiler cpp is an extintion to c. cpp was first called 'c with classes' the ++ in c++ indicates the increment operator in c meaning cpp is an advanced language compared to c the advantage of cpp lies in object oriented programing generally called oops the features of oops are classes,dataabstraction,encapsulation,inheritance, polymorphism,exception handling,etc.,
24th April 2012 07:14 PM
@mit123
Re: Difference between C, C++ and Java?

[QUOTE=rahul k;112410]Dear friend

C++ is the advanced version of 'C" language. So, the basic difference between C++ and JAVA are as given below -

Java is a true object oriented language while c++ is a object oriented language.

In "C" we use the concept of pointers whereas there are no pointers used in JAVA.

Java does not support operator overloading but "C" is support.

Java provides the multi-threading capability while in "C" is not possible.
4th April 2012 07:17 PM
vishnugandhi v
Re: Difference between C, C++ and Java?

Hi friend......

1.C is a procedure oriented language.
C++ is a procedure oriented language.
Java is purely object oriented language

2.C is platform dependent language.
C++ is platform dependent language
java is platform independent language
7th March 2012 01:19 PM
bhairawa
Re: Difference between C, C++ and Java?

java gives more security than c++
1.java is a GUI but c++ is not.
2.in c++ we use constructor and destructor but destructor can't able to destruct the data,in java at the place of destructor we use finalize which hits the data which we have to destruct and null destructs it.
3.we can make our own packages in java but in c++ we can't.
20th January 2012 04:57 PM
sheshadev senapati
Re: Difference between C, C++ and Java?

hello dear

All of these are programming languages.

Programming languages are of two types, namely:
(a) Modular or function-based Programming Language
(b) Object-oriented Programming Language.

C is a modular programming language and doesn't have object-oriented features in it.
whereas, C++ supports both modular and object-oriented features.

Java is a completely object-oriented language as it doesn't allow modular programming. In Java every object has to be defined in terms of a class.

I think now your doubts are clear.

All the best!
thank you
19th January 2012 08:09 PM
sree11
Re: Difference between C, C++ and Java?

C:c is procedural or struture oriented programming language.and c is system dependent or platform depended language.
C++:it is object oriented programming language but it is not fully object oriented programming language why because if you write the programs without using the classes..
Java:it is fully object oriented programming..with out class not possible to write the java program.it is a platform indepnded language
15th October 2011 07:44 AM
Unregistered
Re: Difference between C, C and Java?

Quote:
Originally Posted by Unregistered View Post
what is mean by cloud computing
c is a function language and c++ is aobject oriented language java is simmslar to c++ but some im some improvement
2nd October 2011 03:42 PM
BISWARUPYOGI
Re: Difference between C, C++ and Java?

Quote:
Originally Posted by Unregistered View Post
Sir/Madam,
I have completed my B.E(ECE). but still i am very intrest in software. day after tomorow i want to attend the interview. so kindly give me the answer as soon as possible. If you have any other answer(hint) for it plz send it as well.

Thank u,
P.Manikandan.
Dear friend,

I think the main difference between C or C++ and Java in Object-oriented. In Language C or C++, we can extend one more classes.

There are many problems from the method of extending, like the sequence of initializing the class before using it and the sequence of destroying the class.

It's very hard for the beginner. So Java doesn't allow extending from more one class. On the other side , there is the same in C++ and Java.

C is a procedure oriented language .

C++ is c with object oriented language.

Java is truely object oriented.

Thanks
1st October 2011 01:53 PM
@rnab_dasgupta
Re: Difference between C, C++ and Java?

Dear friend ,
There is a huge difference between C , C++ and JAVA.

C is a procedural based language. It has to be written by maintaining a particular approach.C uses pointers, structures and unions. here for input /output we use printf/scanf .

C++ language is a object oriented language. It follows the principle of OOPs . Here for input/output we use cin/cout . It has properties like Inheritance , Abstraction etc etc..

Java is a 5th generation language. Its is purely Object Oriented Programming. It introduces the concept of object and class. It is not a modular programming language. you can define anything anywhere. It dosn't uses the concept of pointers.
24th September 2011 07:04 PM
Unregistered
Re: Difference between C, C and Java?

differe between c and java
23rd September 2011 12:35 AM
Unregistered
Re: Difference between C, C and Java?

YOUR INFORMATION REALLY HELPED ME A LOT!!!!! THANK U
14th September 2011 11:33 PM
Unregistered
Re: Difference between C, C and Java?

Difference Between C, C , and Java

1. C is Procedure Oriented Programming Language,
C have both the features of Procedure Oriented and Object Oriented.
Java is Complete Object Oriented programming( we can not create any java program without class and instance)

2. To create C and C program we need to use header file and library functions( for C stdio.h, for c iostream.h ) but many library functions like ctype.h , string.h can be used in C and C both. Eg: #include<stdio.h> / #include<iostream.h> etc.
Java does not support header file and library functions here we use package. Eg import java.io.*;

3. C and C both support pointer but Java dose not support the concept of pointer.

4. In case of dynamic memory allocation( C uses malloc or calloc function and C uses new operator ). It is necessary to de-allocate the allocated memory for both C and C (using free ). Otherwise it will be the cause of memory leakage.
Java create and destroy object itself by using Garbage Collection mechanism. You can create object dynmically but you can not control memory heap or memory location. Because pointers are not available in java

5. arguments of main function in java is String args[]

Some special Difference between C and Java

1. classes of C have both the facilitates of multiple and multilevel inheritance.
classes of Java supports multilevel inheritance but do not support multilevel inheritance. Multilevel inheritance is done by implementing interface.

2. C have the facilitates of templates.
Instead of templates generics are present in Java, which are similar to templates in C .

3. Java supports multi-threaded programming.
C does not supports.
12th September 2011 01:02 PM
Unregistered
Re: Difference between C, C and Java?

THANK U 4 all its very usefull to study java coures
11th September 2011 01:57 AM
manoj rajpurohit
Re: Difference between C, C++ and Java?

c language:-

this is a structured language, this is not an object oriented language.
this language is the base of all the programming languages.
it doesn't contain any class and the object.

c++ :-

this is an object oriented language. it is a platform dependent language. so it follow all the uncharacteristic of OOP like inheritance, encapsulation, and poly morphism.
it also contain the class and object.

JAVA

java is a world wide language. it is a platform independent language.
it also have the characteristics of the OOP like inheritance, encapsulation, and polymorphism.
2nd September 2011 07:50 PM
Unregistered
Re: Difference between C, C and Java?

very gud info .. n its verry useful..
thanks for posting guys ..
gud luck ,,
1st September 2011 12:13 AM
cool.cristae
Re: Difference between C, C++ and Java?

Hi dear,

C++ is the advanced version of 'C" language. So, the basic difference between C++ and JAVA are as given below -

Java is a true object oriented language while c++ is a object oriented language.

In "C" we use the concept of pointers whereas there are no pointers used in JAVA.

Java does not support operator overloading but "C" is support.

Java provides the multi-threading capability while in "C" is not possible.
Thanks
31st August 2011 01:40 PM
Unregistered
Re: Difference between C, C and Java?

I have interview in CTS wat they ask in related to the technical questions?
29th August 2011 04:21 PM
ANIAAAAANNNNNIIIII00000
Re: Difference between C, C++ and Java?

Dear friend,
As you said that you are very interested in software,I happy to inform you that there are lots of job opportunities in software.
Now coming to the point,difference between C,C++ and Java.First you need to remember that C is the basic of all other programing language and the differences are as below,
>>C is a procedure oriented language,while other two are object oriented language.
>>C and C++ is platform dependent while Java is platform independent.
>>C has pointer while other two do not have pointers.
These are the main difference between these three languages,there more difference also but those are not important.
Hope I help you.
29th August 2011 03:16 AM
balafederer
Re: Difference between C, C++ and Java?

Hello,

Difference between C and Java:

1. C is a structure oriented program.
2. Java does not support explicit pointer type.
3. Java requires that the functions with number arguments must be declared empty paranthesis and not with the void keyword in C.
4. Java does not define the type modifiers keywords auto,extern,register,signed & unsigned.

Difference between C++ and Java:

1. C++ is object oriented program.
2. Java is a purely object oriented program
3. Java does not support Global variables
4. Java does not use the pointers
5. Java does not support operator overloading
6. Java does not template classes as in C++.
7. Java has replaced the destructor function with a finalize function.

Best wishes
20th August 2011 02:26 PM
amaan khan ak
Re: Difference between C, C++ and Java?

Quote:
Originally Posted by Unregistered View Post
Sir/Madam,
I have completed my B.E(ECE). but still i am very intrest in software. day after tomorow i want to attend the interview. so kindly give me the answer as soon as possible. If you have any other answer(hint) for it plz send it as well.

Thank u,
P.Manikandan.
there are many similarities and dissimilarities here

1.c language is a structured language.it used pointer.its a top down approachComplex functionality such as I/O.hard programmnig as compare to java and c++ languages.c is a platform dependent language so the executable code couldnt run on other operating system.


2.c++ is the advanced version of c language.its also a platform dependent langauge that why the executable code couldnt run on any other oprating system.its a object oriented language.

3.java is a pure object oriented language.java is a platform independent language.so byte code can be run on any other oprating system.java is easy,robust,secure,portable language.
16th August 2011 06:19 PM
Unregistered
Re: Difference between C, C and Java?

what is the main difference between the servlets and jsp
31st July 2011 10:13 PM
ajeetajeet1250
Re: Difference between C, C++ and Java?

Difference between C, C++ and Java?

Dear friend

C++ is the advanced version of 'C" language. So, the basic difference between C++ and JAVA are as given below -

Java is a true object oriented language while c++ is a object oriented language.

In "C" we use the concept of pointers whereas there are no pointers used in JAVA.

Java does not support operator overloading but "C" is support.

Java provides the multi-threading capability while in "C" is not possible.
31st July 2011 09:55 PM
ankur049
Re: Difference between C, C++ and Java?

Difference between C, C++ and Java?

Dear friend

C++ is the advanced version of 'C" language. So, the basic difference between C++ and JAVA are as given below -

Java is a true object oriented language while c++ is a object oriented language.

In "C" we use the concept of pointers whereas there are no pointers used in JAVA.

Java does not support operator overloading but "C" is support.

Java provides the multi-threading capability while in "C" is not possible.
31st July 2011 08:07 PM
aroy8091
Re:

dear friend,

The differences between the C++ and Java programming languages can be traced to their heritage, as they have different design goals.
C++ was designed for systems and applications programming, extending the C programming language. To this procedural programming language designed for efficient execution, C++ has added support for statically-typed object-oriented programming, exception handling, scoped resource management, and generic programming, in particular. It also added a standard library which includes generic containers and algorithms.
Java was created initially as an interpreter for printing systems but grew to support network computing. Sun Microsystems used it for the basis of their "HotJava" thin client system. It relies on a virtual machine to be secure and highly portable. It is bundled with an extensive library designed to provide a complete abstraction of the underlying platform. Java is a statically-typed object-oriented language that uses a syntax similar to C++, but is not compatible with it. It was designed from scratch, with the goal of being easy to use and accessible to a wider audience.


all the best..........
31st July 2011 05:31 PM
Unregistered
Re: Difference between C, C and Java?

tnk u so m uch 2 all,.,.all ans r very usefull 2 me ,.,
23rd July 2011 01:46 PM
Unregistered
Re: Difference between C, C and Java?

differenciate the c,c ,java
21st July 2011 12:40 PM
Unregistered
Re: Difference between C, C and Java?

c is procedural language or structured oriented language? which is mainly called?
16th July 2011 01:50 AM
shekhar.379
Re: Difference between C, C++ and Java?

Hi dear,

C++ is the advanced version of 'C" language. So, the basic difference between C++ and JAVA are as given below -

Java is a true object oriented language while c++ is a object oriented language.

In "C" we use the concept of pointers whereas there are no pointers used in JAVA.

Java does not support operator overloading but "C" is support.

Java provides the multi-threading capability while in "C" is not possible.
Thanks
10th July 2011 11:13 PM
Unregistered
Re: Difference between C, C and Java?

Quote:
Originally Posted by Unregistered View Post
If I am a beginner in all three of these, which should I start with C, C or Java?
you must start vid c...
6th July 2011 09:01 PM
Unregistered
Re: Difference between C, C and Java?

what is cloud computing? what are the advantages of it
2nd July 2011 02:41 PM
vinnycrm
Re: Difference between C, C++ and Java?

c language:
1. c is an completly structured oriented programing lagurage.
2.this is task oriended.
C++ language:
1. c++ is not purely objected oriented programing laguage.
2. this is less secuted laguage compared to java.
java laguage:
1. java is a pure object oriented programing laguage.
2. java highly secured programing language.
29th June 2011 12:10 PM
kartavya99
Re: Difference between C, C++ and Java?

java is most advanced among three. c++ is advanced than c. c is first language after assembly. and all these have their own library of functions used for our required.
26th June 2011 01:03 PM
amit gaur2065
Re: Difference between C, C++ and Java?

C is a basic programming, which is devloped in T&Bell laboratory,
But C++ and Java is object oriented programming,
we can say it is advanced version of C language.
17th June 2011 06:22 PM
kartavya99
Re: Difference between C, C++ and Java?

Quote:
Originally Posted by Unregistered View Post
Sir/Madam,
I have completed my B.E(ECE). but still i am very intrest in software. day after tomorow i want to attend the interview. so kindly give me the answer as soon as possible. If you have any other answer(hint) for it plz send it as well.

Thank u,
P.Manikandan.
it doesnt matter whether you are geting joined but keep in mind that you are in your interested field.
13th June 2011 08:20 PM
Unregistered
Re: Difference between C, C and Java?

java stands for?
13th June 2011 12:24 PM
nurujjaman
Difference between C, C++ and Java?

Sir/Madam,
I want to know what is the difference between c, c++ & java.
13th June 2011 06:45 AM
Unregistered
Re: Difference between C, C and Java?

what is mean by cloud computing
3rd May 2011 03:15 AM
Unregistered
Re: Difference between C, C and Java?

difference between structure and union
27th April 2011 01:51 PM
Unregistered
Re: Difference between C, C and Java?

What is need of java to take place after C and C
24th April 2011 12:59 PM
Unregistered
Re: Difference between C, C and Java?

what is inner work of JVM?
23rd April 2011 12:03 AM
Unregistered
Re: Difference between C, C and Java?

in c what is the program of average of 6 numbers?
13th April 2011 04:46 PM
sureshcbe
Re: Difference between C, C and Java?

Quote:
Originally Posted by Unregistered View Post
If I am a beginner in all three of these, which should I start with C, C++ or Java?
Its better to start with c language. If you have ability to learn c, then you can easily learn any other languages.
13th April 2011 02:37 PM
Unregistered
Re: Difference between C, C and Java?

java dies not support multiple inheritence? why?
10th April 2011 03:44 PM
balathegreat
Re: Difference between C, C++ and Java?

Hi friend,

you asked a nice question.

c program is a basic version of programming language. In c you will have

a concept named variable++ = variable + 1. In similar concept only C++ is

formed and named. It is same as c with some more improvements.

Java is another programming language which is so advanced and

nowadays mostly used. It is an object oriented programming language like c++.
10th April 2011 03:37 PM
akkilala
Re: Difference between C, C++ and Java?

hi dear,C++ is the advanced version of 'C" language. So, the basic difference between C++ and JAVA are as given below -

Java is a true object oriented language while c++ is a object oriented language.

In "C" we use the concept of pointers whereas there are no pointers used in JAVA.

Java does not support operator overloading but "C" is support.

Java provides the multi-threading capability while in "C" is not possible.

thank
9th April 2011 11:54 PM
Unregistered
Re: Difference between C, C and Java?

compilation and runtime mean wat
This thread has more than 50 replies. Click here to review the whole thread.

Posting Rules
You may post new threads
You may post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.0
vBulletin Optimisation by vB Optimise.