Results 1 to 4 of 4
What is the difference between C and Java language?
This is a discussion on What is the difference between C and Java language? within the Programming forums, part of the Web Designing & Development category; C language and Java are the two high level languages and most popular to build applications. C Mostly used in ...
- 08-28-2019, 08:00 PM #1
- Join Date
- Jan 2014
- Location
- India
- Posts
- 425
What is the difference between C and Java language?
C language and Java are the two high level languages and most popular to build applications. C Mostly used in devices manufacturing like for example military devices where as Java mainly used in application (logical) development which execute in network building.
- 09-24-2019, 11:17 AM #2
- Join Date
- Aug 2017
- Location
- New Delhi
- Posts
- 77
Re: What is the difference between C and Java language?
C Language
C is a Procedural Programming Language.
C is more procedure-oriented.
C generally breaks down to functions.
C does not supports Threading.
C supports pointers.
Java Language
Java does not supports pointers.
Java supports the concept of threading.
Java breaks down to Objects.
Java is Object-Oriented language.
Java is more data-oriented.
- 11-18-2019, 10:11 AM #3
- Join Date
- Jan 2018
- Location
- PUNE
- Posts
- 281
Re: What is the difference between C and Java language?
JAVA is Object-Oriented while C is procedural.Different Paradigms, that is. Most differences between the features of the two languages arise due to the use of different programming paradigms. Cbreaks down to functions while JAVA breaks down to Objects. C is more procedure-oriented while JAVA is data-oriented.
- 05-23-2020, 04:19 PM #4
- Join Date
- May 2020
- Posts
- 120
Re: What is the difference between C and Java language?
C is structure/procedure oriented programming language whereas Java is object oriented programming language. C language program design is top down approach whereas Java is using bottom up approach. C language is middle level language whereas Java is high level language. ... Whereas exception handling is present in Java.