C,c++, Java is all are structural oriented or procedure
oriented language..?
Answers were Sorted based on User's Feedback
Answer / v.prasad
c is structural oriented language c++ is structural &
procedure oriented language bt java is procedure oriented
language
| Is This Answer Correct ? | 8 Yes | 1 No |
c,c++ are structural&procedure oriented languages java is
object oriented
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / srika
C is a Structured & procedure lang
C++ is a procedure lang
java is a procedure lang(can be acceptable)
so all are procedural lang
| Is This Answer Correct ? | 0 Yes | 0 No |
How can I trap or ignore keyboard interrupts like control-c?
What is the difference between arrays and pointers?
What is static and auto variables in c?
Explain how do you print only part of a string?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
which one low Priority in c? a)=,b)++,c)==,d)+
What is malloc() function?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...
Explain setjmp()?
What is a wrapper function in c?
What Is The Difference Between Null And Void Pointer?